Skip to content

Commit 468f176

Browse files
committed
Add env_logger as a workspace dependency and update it
1 parent 83aceca commit 468f176

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ resolver = "2"
77
anyhow = "1"
88
chrono = "0.4"
99
clap = "4.1"
10+
env_logger = "0.10"
1011
hashbrown = "0.14"
1112
lazy_static = "1"
1213
log = "0.4"

collector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ rust-version = "1.75.0"
99
[dependencies]
1010
anyhow = { workspace = true }
1111
chrono = { workspace = true, features = ["serde"] }
12+
env_logger = { workspace = true }
1213
lazy_static = { workspace = true }
1314
log = { workspace = true }
1415
serde = { workspace = true, features = ["derive"] }
1516
serde_json = { workspace = true }
1617
clap = { workspace = true, features = ["derive"] }
1718

18-
env_logger = "0.10"
1919
thiserror = "1"
2020
tempfile = "3"
2121
libc = "0.2"

collector/benchlib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ description = "Library for defining and measuring benchmarks of Rust code"
99
[dependencies]
1010
anyhow = { workspace = true }
1111
clap = { workspace = true, features = ["derive", "string"] }
12+
env_logger = { workspace = true }
1213
log = { workspace = true }
1314
serde = { workspace = true, features = ["derive"] }
1415
serde_json = { workspace = true }
1516

16-
env_logger = "0.10.0"
1717
libc = "0.2"
1818
flate2 = { version = "1", optional = true }
1919
crabgrind = { version = "0.1.10", optional = true }

database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ edition = "2021"
88
anyhow = { workspace = true }
99
chrono = { workspace = true, features = ["serde"] }
1010
clap = { workspace = true, features = ["cargo"] }
11+
env_logger = { workspace = true }
1112
hashbrown = { workspace = true, features = ["serde"] }
1213
lazy_static = { workspace = true }
1314
log = { workspace = true }
@@ -21,7 +22,6 @@ intern = { path = "../intern" }
2122
reqwest = { version = "0.11" }
2223
postgres-native-tls = "0.5"
2324
native-tls = "0.2"
24-
env_logger = "0.10"
2525
futures-util = "0.3.5"
2626
bytes = "1"
2727
csv = "1"

site/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ edition = "2021"
77
[dependencies]
88
anyhow = { workspace = true }
99
chrono = { workspace = true }
10+
env_logger = { workspace = true }
1011
hashbrown = { workspace = true, features = ["serde"] }
1112
lazy_static = { workspace = true }
1213
log = { workspace = true }
1314
serde = { workspace = true, features = ["rc"] }
1415
serde_json = { workspace = true }
1516

16-
env_logger = "0.10"
1717
futures = "0.3"
1818
tokio = { version = "1.26", features = ["macros", "time"] }
1919
hyper = { version = "0.14", features = ["server", "stream"] }

0 commit comments

Comments
 (0)