Skip to content

Commit

Permalink
Update sysinfo requirement from 0.32.0 to 0.33.0 (#292)
Browse files Browse the repository at this point in the history
* Update sysinfo requirement from 0.32.0 to 0.33.0

Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version.
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/GuillaumeGomez/sysinfo/commits)

---
updated-dependencies:
- dependency-name: sysinfo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update changelog

Signed-off-by: dependabot[bot] <[email protected]>

* Fix compilation

Signed-off-by: Thomas Farr <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Thomas Farr <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com>
Co-authored-by: Thomas Farr <[email protected]>
  • Loading branch information
3 people authored Dec 9, 2024
1 parent 004e5aa commit 0f27696
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Added middleware types to allow intercepting construction and handling of the underlying `reqwest` client & requests ([#232](https://github.com/opensearch-project/opensearch-rs/pull/232))

### Dependencies
- Bumps `sysinfo` from 0.31.2 to 0.32.0
- Bumps `sysinfo` from 0.31.2 to 0.33.0
- Bumps `thiserror` from 1 to 2

### Changed
Expand Down
2 changes: 1 addition & 1 deletion opensearch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ futures = "0.3.1"
http-body-util = "0.1.0"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
sysinfo = "0.32.0"
sysinfo = "0.33.0"
test-case = "3"
textwrap = "0.16"
tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion opensearch/examples/cat_indices.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ fn create_client() -> Result<OpenSearch, Error> {
/// Determines if Fiddler.exe proxy process is running
fn running_proxy() -> bool {
let system = System::new_with_specifics(
RefreshKind::new().with_processes(ProcessRefreshKind::default()),
RefreshKind::nothing().with_processes(ProcessRefreshKind::default()),
);
let has_fiddler = system
.processes_by_name(OsStr::new("Fiddler"))
Expand Down
2 changes: 1 addition & 1 deletion opensearch/tests/common/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub fn cluster_addr() -> String {
/// Checks if Fiddler proxy process is running
fn running_proxy() -> bool {
let system = System::new_with_specifics(
RefreshKind::new().with_processes(ProcessRefreshKind::default()),
RefreshKind::nothing().with_processes(ProcessRefreshKind::default()),
);
let has_fiddler = system
.processes_by_name(OsStr::new("Fiddler"))
Expand Down
2 changes: 1 addition & 1 deletion yaml_test_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ serde_yaml = "0.9"
serde_json = { version = "1", features = ["arbitrary_precision"] }
simple_logger = "5.0.0"
syn = { version = "2.0", features = ["full"] }
sysinfo = "0.32"
sysinfo = "0.33"
url = "2.1.1"
tar = "0.4"
flate2 = "1"
Expand Down

0 comments on commit 0f27696

Please sign in to comment.