Skip to content

Commit

Permalink
Drop unnecessary '^' from Cargo.toml dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
htejun committed Sep 18, 2023
1 parent df5d4dc commit eb2d61c
Show file tree
Hide file tree
Showing 8 changed files with 119 additions and 119 deletions.
16 changes: 8 additions & 8 deletions rd-agent-intf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ readme = "README.md"
rd-util = { path = "../rd-util", version = "2.2.4" }
rd-hashd-intf = { path = "../rd-hashd-intf", version = "2.2.4" }

anyhow = "^1.0"
clap = "^2.33"
chrono = { version = "^0.4", features = ["serde"] }
enum-iterator = "^0.7"
lazy_static = "^1.4"
libc = "^0.2"
log = "^0.4"
serde = { version = "^1.0", features = ["derive"] }
anyhow = "1.0"
clap = "2.33"
chrono = { version = "0.4", features = ["serde"] }
enum-iterator = "0.7"
lazy_static = "1.4"
libc = "0.2"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
38 changes: 19 additions & 19 deletions rd-agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@ rd-util = { path = "../rd-util", version = "2.2.4" }
rd-hashd-intf = { path = "../rd-hashd-intf", version = "2.2.4" }
rd-agent-intf = { path = "../rd-agent-intf", version = "2.2.4" }

anyhow = "^1.0"
chrono = { version = "^0.4", features = ["serde"] }
crossbeam = "^0.8"
enum-iterator = "^0.7"
glob = "^0.3"
json = "^0.12"
lazy_static = "^1.4"
libc = "^0.2"
linux_proc = "^0.1"
log = "^0.4"
nix = "^0.23"
procfs = "^0.12"
proc-mounts = "^0.2"
regex = "^1.5"
scan_fmt = "^0.2"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
sysinfo = "^0.23"
uzers = "^0.11"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
crossbeam = "0.8"
enum-iterator = "0.7"
glob = "0.3"
json = "0.12"
lazy_static = "1.4"
libc = "0.2"
linux_proc = "0.1"
log = "0.4"
nix = "0.23"
procfs = "0.12"
proc-mounts = "0.2"
regex = "1.5"
scan_fmt = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sysinfo = "0.23"
uzers = "0.11"
10 changes: 5 additions & 5 deletions rd-hashd-intf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ readme = "README.md"
[dependencies]
rd-util = { path = "../rd-util", version = "2.2.4" }

anyhow = "^1.0"
chrono = { version = "^0.4", features = ["serde"] }
clap = "^2.33"
lazy_static = "^1.4"
serde = { version = "^1.0", features = ["derive"] }
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = "2.33"
lazy_static = "1.4"
serde = { version = "1.0", features = ["derive"] }
36 changes: 18 additions & 18 deletions rd-hashd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ readme = "README.md"
rd-util = { path = "../rd-util", version = "2.2.4" }
rd-hashd-intf = { path = "../rd-hashd-intf", version = "2.2.4" }

anyhow = "^1.0"
chrono = { version = "^0.4", features = ["serde"] }
console = "^0.15"
crossbeam = "^0.8"
env_logger = "^0.9"
glob = "^0.3"
indicatif = "^0.16"
lazy_static = "^1.4"
libc = "^0.2"
linreg = "^0.2"
log = "^0.4"
num = "^0.4"
pid = "^3.0"
quantiles = "^0.7"
rand = { version = "^0.8", features = ["small_rng"] }
rand_distr = "^0.4"
scan_fmt = "^0.2"
sha1_smol = "^1.0"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
console = "0.15"
crossbeam = "0.8"
env_logger = "0.9"
glob = "0.3"
indicatif = "0.16"
lazy_static = "1.4"
libc = "0.2"
linreg = "0.2"
log = "0.4"
num = "0.4"
pid = "3.0"
quantiles = "0.7"
rand = { version = "0.8", features = ["small_rng"] }
rand_distr = "0.4"
scan_fmt = "0.2"
sha1_smol = "1.0"
50 changes: 25 additions & 25 deletions rd-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,30 @@ build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "^1.0"
chrono = "^0.4"
clap = "^2.33"
console = "^0.15"
crossbeam = "^0.8"
ctrlc = { version = "^3.2", features = ["termination"] }
env_logger = "^0.9"
glob = "^0.3"
json = "^0.12"
lazy_static = "^1.4"
libc = "^0.2"
log = "^0.4"
num = "^0.4"
num_cpus = "^1.13"
page_size = "^0.4"
proc-mounts = "^0.2"
rand = { version = "^0.8", features = ["small_rng"] }
rustbus = "^0.17"
scan_fmt = "^0.2"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
simplelog = "^0.11"
sysinfo = "^0.23"
anyhow = "1.0"
chrono = "0.4"
clap = "2.33"
console = "0.15"
crossbeam = "0.8"
ctrlc = { version = "3.2", features = ["termination"] }
env_logger = "0.9"
glob = "0.3"
json = "0.12"
lazy_static = "1.4"
libc = "0.2"
log = "0.4"
num = "0.4"
num_cpus = "1.13"
page_size = "0.4"
proc-mounts = "0.2"
rand = { version = "0.8", features = ["small_rng"] }
rustbus = "0.17"
scan_fmt = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simplelog = "0.11"
sysinfo = "0.23"

[build-dependencies]
anyhow = "^1.0"
vergen = "^7.0"
anyhow = "1.0"
vergen = "7.0"
10 changes: 5 additions & 5 deletions resctl-bench-intf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ lambda = []
rd-util = { path = "../rd-util", version = "2.2.4" }
rd-agent-intf = { path = "../rd-agent-intf", version = "2.2.4" }

anyhow = "^1.0"
clap = "^2.33"
lazy_static = "^1.4"
log = "^0.4"
serde = { version = "^1.0", features = ["derive"] }
anyhow = "1.0"
clap = "2.33"
lazy_static = "1.4"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
50 changes: 25 additions & 25 deletions resctl-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,29 +29,29 @@ md5 = { version = "0.7", optional = true }
octocrab = { version = "0.28.0", optional = true, features = ["rustls"], default-features = false }
tokio = { version = "1.29.1", optional = true }

anyhow = "^1.0"
base64 = "^0.13"
chrono = "^0.4"
console = "^0.15"
env_logger = "^0.9"
indicatif = "^0.16"
lazy_static = "^1.4"
libc = "^0.2"
libflate = "^1.1"
linreg = "^0.2"
log = "^0.4"
anyhow = "1.0"
base64 = "0.13"
chrono = "0.4"
console = "0.15"
env_logger = "0.9"
indicatif = "0.16"
lazy_static = "1.4"
libc = "0.2"
libflate = "1.1"
linreg = "0.2"
log = "0.4"
minreq = { version= "2.8.1", features = ["https-rustls", "json-using-serde"] }
num-traits = "^0.2"
plotlib = "^0.5"
quantiles = "^0.7"
rand = "^0.8"
scan_fmt = "^0.2"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
statistical = "^1.0"
statrs = "^0.16"
sysinfo = "^0.23"
tar = "^0.4"
tempfile = "^3.3"
term_size = "^0.3"
thiserror = "^1.0"
num-traits = "0.2"
plotlib = "0.5"
quantiles = "0.7"
rand = "0.8"
scan_fmt = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
statistical = "1.0"
statrs = "0.16"
sysinfo = "0.23"
tar = "0.4"
tempfile = "3.3"
term_size = "0.3"
thiserror = "1.0"
28 changes: 14 additions & 14 deletions resctl-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ rd-util = { path = "../rd-util", version = "2.2.4" }
rd-hashd-intf = { path = "../rd-hashd-intf", version = "2.2.4" }
rd-agent-intf = { path = "../rd-agent-intf", version = "2.2.4" }

anyhow = "^1.0"
chrono = { version = "^0.4", features = ["serde"] }
clap = "^2.33"
crossbeam = "^0.8"
cursive = { version = "^0.16", default-features = false, features = ["termion"] }
cursive_buffered_backend = "^0.5"
cursive-tabs = "^0.6"
enum-iterator = "^0.7"
env_logger = "^0.9"
lazy_static = "^1.4"
libc = "^0.2"
log = "^0.4"
tempfile = "^3.3"
term_size = "^0.3"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = "2.33"
crossbeam = "0.8"
cursive = { version = "0.16", default-features = false, features = ["termion"] }
cursive_buffered_backend = "0.5"
cursive-tabs = "0.6"
enum-iterator = "0.7"
env_logger = "0.9"
lazy_static = "1.4"
libc = "0.2"
log = "0.4"
tempfile = "3.3"
term_size = "0.3"

0 comments on commit eb2d61c

Please sign in to comment.