Skip to content

Commit

Permalink
Update sysinfo requirement from 0.29.0 to 0.30.5 (#238) (#239)
Browse files Browse the repository at this point in the history
* Update sysinfo requirement from 0.29.0 to 0.30.5

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]>

* Remove sysinfo::SystemExt usage

Signed-off-by: Andriy Redko <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Andriy Redko <[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: Andriy Redko <[email protected]>
(cherry picked from commit 574a9b4)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 7004d29 commit 7752939
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Bumps `aws-*` dependencies to `1` ([#219](https://github.com/opensearch-project/opensearch-rs/pull/219))
- Bumps `itertools` from 0.11.0 to 0.12.0
- Bumps `hyper` from 0.14 to 1 in tests ([#221](https://github.com/opensearch-project/opensearch-rs/pull/221))
- Bumps `sysinfo` from 0.29.0 to 0.30.5

### Changed

Expand Down
2 changes: 1 addition & 1 deletion opensearch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,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.29.0"
sysinfo = "0.30.5"
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 @@ -36,7 +36,7 @@ use opensearch::{
http::transport::{SingleNodeConnectionPool, TransportBuilder},
Error, OpenSearch, DEFAULT_ADDRESS,
};
use sysinfo::{ProcessRefreshKind, RefreshKind, System, SystemExt};
use sysinfo::{ProcessRefreshKind, RefreshKind, System};
use url::Url;

#[tokio::main]
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 @@ -42,7 +42,7 @@ use opensearch::{
BulkOperation, BulkParts, Error, OpenSearch, DEFAULT_ADDRESS,
};
use serde_json::json;
use sysinfo::{ProcessRefreshKind, RefreshKind, System, SystemExt};
use sysinfo::{ProcessRefreshKind, RefreshKind, System};
use url::Url;

/// Gets the address to the OpenSearch instance from environment variables
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 = "4.0.0"
syn = { version = "2.0", features = ["full"] }
sysinfo = "0.29"
sysinfo = "0.30"
url = "2.1.1"
tar = "0.4"
flate2 = "1"
Expand Down
1 change: 0 additions & 1 deletion yaml_test_runner/tests/common/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ use opensearch::{
};
use serde_json::Value;
use std::ops::Deref;
use sysinfo::SystemExt;
use url::Url;

use crate::assert_response_success;
Expand Down

0 comments on commit 7752939

Please sign in to comment.