Skip to content

Commit

Permalink
Update several rust crate versions
Browse files Browse the repository at this point in the history
Summary: Update versions for several of the crates we depend on.

Reviewed By: danobi

Differential Revision: D29165283

fbshipit-source-id: baaa9fa106b7dad000f93d2eefa95867ac46e5a1
  • Loading branch information
davide125 authored and facebook-github-bot committed Jun 17, 2021
1 parent eb68c45 commit 58eb99d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions resctl/below/Cargo.toml
Expand Up @@ -15,14 +15,14 @@ cgroupfs = { version = "0.2.0", path = "../common/cgroupfs" }
common = { package = "below-common", version = "0.2.0", path = "common" }
cursive = { version = "0.16.0", features = ["crossterm", "termion"], default-features = false }
dump = { package = "below-dump", version = "0.2.0", path = "dump" }
libbpf-rs = "0.10.0"
libbpf-rs = "0.11.0"
libc = "0.2.86"
model = { package = "below-model", version = "0.2.0", path = "model" }
once_cell = "1.4"
plain = "0.2"
procfs = { package = "fb_procfs", version = "0.2.0", path = "../common/procfs" }
regex = "1.4.2"
serde = { version = "=1.0.118", features = ["derive", "rc"] }
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde_json = { version = "1.0", features = ["float_roundtrip"] }
signal-hook = "0.3"
slog = { version = "2.5", features = ["max_level_trace"] }
Expand All @@ -32,7 +32,7 @@ store = { package = "below-store", version = "0.2.0", path = "store" }
structopt = "0.3.21"
tokio = { version = "0.2.25", features = ["full", "test-util"] }
toml = "=0.5.7"
users = "0.9"
users = "0.11"
view = { package = "below-view", version = "0.2.0", path = "view" }
walkdir = "2.2.9"

Expand All @@ -43,7 +43,7 @@ rand = { version = "0.7", features = ["small_rng"] }
tempdir = "0.3"

[build-dependencies]
libbpf-cargo = "0.7.0"
libbpf-cargo = "0.7.1"

[features]
enable_backtrace = []
4 changes: 2 additions & 2 deletions resctl/below/model/Cargo.toml
Expand Up @@ -12,9 +12,9 @@ anyhow = "1.0"
below_derive = { version = "0.2.0", path = "../below_derive" }
cgroupfs = { version = "0.2.0", path = "../../common/cgroupfs" }
hostname = "0.3"
os_info = "=2.0.1"
os_info = "=3.0.6"
procfs = { package = "fb_procfs", version = "0.2.0", path = "../../common/procfs" }
regex = "1.4.2"
serde = { version = "=1.0.118", features = ["derive", "rc"] }
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde_json = { version = "1.0", features = ["float_roundtrip"] }
slog = { version = "2.5", features = ["max_level_trace"] }
6 changes: 3 additions & 3 deletions resctl/below/store/Cargo.toml
Expand Up @@ -17,12 +17,12 @@ humantime = "1.3"
maplit = "1.0"
memmap = "0.7"
model = { package = "below-model", version = "0.2.0", path = "../model" }
nix = "0.19"
serde = { version = "=1.0.118", features = ["derive", "rc"] }
nix = "0.20"
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde_cbor = "0.11"
slog = { version = "2.5", features = ["max_level_trace"] }
static_assertions = "1.1.0"
zstd = "=0.7.0+zstd.1.4.9"
zstd = "=0.8.0+zstd.1.4.9"

[dev-dependencies]
itertools = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion resctl/below/view/Cargo.toml
Expand Up @@ -19,7 +19,7 @@ libc = "0.2.86"
model = { package = "below-model", version = "0.2.0", path = "../model" }
once_cell = "1.4"
render = { package = "below-render", version = "0.2.0", path = "../render" }
serde = { version = "=1.0.118", features = ["derive", "rc"] }
serde = { version = "1.0.126", features = ["derive", "rc"] }
slog = { version = "2.5", features = ["max_level_trace"] }
store = { package = "below-store", version = "0.2.0", path = "../store" }
toml = "=0.5.7"
4 changes: 2 additions & 2 deletions resctl/common/cgroupfs/Cargo.toml
Expand Up @@ -9,9 +9,9 @@ repository = "https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
nix = "0.19"
nix = "0.20"
openat = "0.1.20"
serde = { version = "=1.0.118", features = ["derive", "rc"] }
serde = { version = "1.0.126", features = ["derive", "rc"] }
thiserror = "1.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion resctl/common/procfs/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ license = "Apache-2.0"
lazy_static = "1.0"
libc = "0.2.86"
openat = "0.1.20"
serde = { version = "=1.0.118", features = ["derive", "rc"] }
serde = { version = "1.0.126", features = ["derive", "rc"] }
thiserror = "1.0"
threadpool = "1.8.1"

Expand Down

0 comments on commit 58eb99d

Please sign in to comment.