Skip to content

Commit 4a24dd3

Browse files
committed
Add log as a workspace dependency and update it
1 parent 03479e2 commit 4a24dd3

File tree

7 files changed

+13
-15
lines changed

7 files changed

+13
-15
lines changed

Cargo.lock

Lines changed: 2 additions & 5 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
@@ -4,6 +4,7 @@ exclude = ["rust/src"]
44
resolver = "2"
55

66
[workspace.dependencies]
7+
log = "0.4"
78
serde = "1"
89
serde_json = "1"
910

collector/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ description = "Collects Rust performance data"
77
rust-version = "1.75.0"
88

99
[dependencies]
10+
serde = { workspace = true, features = ["derive"] }
11+
serde_json = { workspace = true }
12+
log = { workspace = true }
1013
clap = { version = "4.1", features = ["derive"] }
1114
env_logger = "0.10"
1215
anyhow = "1"
1316
thiserror = "1"
14-
log = "0.4"
15-
serde = { workspace = true, features = ["derive"] }
16-
serde_json = { workspace = true }
1717
tempfile = "3"
1818
libc = "0.2"
1919
chrono = { version = "0.4", features = ["serde"] }

collector/benchlib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ description = "Library for defining and measuring benchmarks of Rust code"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10+
log = { workspace = true }
1011
serde = { workspace = true, features = ["derive"] }
1112
serde_json = { workspace = true }
1213

1314
anyhow = "1.0.61"
14-
log = "0.4.17"
1515
env_logger = "0.10.0"
1616
clap = { version = "4.1", features = ["derive", "string"] }
1717
libc = "0.2"

database/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ authors = ["Mark Rousskov <mark.simulacrum@gmail.com>"]
55
edition = "2021"
66

77
[dependencies]
8-
hashbrown = { version = "0.14", features = ["serde"] }
98
serde = { workspace = true, features = ["derive"] }
9+
log = { workspace = true }
10+
hashbrown = { version = "0.14", features = ["serde"] }
1011
rusqlite = { version = "0.28", features = ["bundled"] }
1112
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4", "runtime"] }
1213
anyhow = "1"
@@ -19,7 +20,6 @@ postgres-native-tls = "0.5"
1920
native-tls = "0.2"
2021
env_logger = "0.10"
2122
futures-util = "0.3.5"
22-
log = "0.4"
2323
bytes = "1"
2424
csv = "1"
2525
clap = { version = "4.1", features = ["cargo"] }

intern/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ authors = ["Mark Rousskov <mark.simulacrum@gmail.com>"]
55
edition = "2021"
66

77
[dependencies]
8+
serde = { workspace = true, features = ["derive"] }
89
bumpalo = "3.2"
910
parking_lot = "0.12"
1011
arc-swap = "1.3"
1112
hashbrown = "0.14"
1213
lazy_static = "1"
13-
serde = { workspace = true, features = ["derive"] }

site/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ version = "0.1.0"
55
edition = "2021"
66

77
[dependencies]
8+
serde = { workspace = true, features = ["rc"] }
9+
serde_json = { workspace = true }
10+
log = { workspace = true }
811
env_logger = "0.10"
912
anyhow = "1"
1013
futures = "0.3"
1114
tokio = { version = "1.26", features = ["macros", "time"] }
12-
log = "0.4"
13-
serde = { workspace = true, features = ["rc"] }
14-
serde_json = { workspace = true }
1515
hyper = { version = "0.14", features = ["server", "stream"] }
1616
headers = "0.3"
1717
http = "0.2"

0 commit comments

Comments
 (0)