Skip to content

Commit 83aceca

Browse files
committed
Add lazy_static as a workspace dependency and update it
1 parent 9132c5a commit 83aceca

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
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
@@ -8,6 +8,7 @@ anyhow = "1"
88
chrono = "0.4"
99
clap = "4.1"
1010
hashbrown = "0.14"
11+
lazy_static = "1"
1112
log = "0.4"
1213
serde = "1"
1314
serde_json = "1"

collector/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ rust-version = "1.75.0"
99
[dependencies]
1010
anyhow = { workspace = true }
1111
chrono = { workspace = true, features = ["serde"] }
12+
lazy_static = { workspace = true }
1213
log = { workspace = true }
1314
serde = { workspace = true, features = ["derive"] }
1415
serde_json = { workspace = true }
@@ -18,14 +19,11 @@ env_logger = "0.10"
1819
thiserror = "1"
1920
tempfile = "3"
2021
libc = "0.2"
21-
lazy_static = "1"
2222
semver = "1.0"
2323
reqwest = { version = "0.11", features = ["json", "blocking"] }
2424
xz2 = "0.1.3"
2525
tar = "0.4"
2626
tokio = { version = "1.6", features = ["rt", "process"] }
27-
database = { path = "../database" }
28-
intern = { path = "../intern" }
2927
futures = "0.3.5"
3028
jobserver = "0.1.21"
3129
snap = "1"
@@ -41,10 +39,13 @@ object = "0.36.0"
4139
tabled = { version = "0.14.0", features = ["ansi-str"] }
4240
humansize = "2.1.3"
4341
regex = "1.7.1"
42+
4443
analyzeme = "12.0.0"
4544
inquire = "0.7.5"
4645

4746
benchlib = { path = "benchlib" }
47+
database = { path = "../database" }
48+
intern = { path = "../intern" }
4849

4950
[target.'cfg(windows)'.dependencies]
5051
miow = "0.3"

database/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ anyhow = { workspace = true }
99
chrono = { workspace = true, features = ["serde"] }
1010
clap = { workspace = true, features = ["cargo"] }
1111
hashbrown = { workspace = true, features = ["serde"] }
12+
lazy_static = { workspace = true }
1213
log = { workspace = true }
1314
serde = { workspace = true, features = ["derive"] }
1415

intern/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition = "2021"
66

77
[dependencies]
88
hashbrown = { workspace = true }
9+
lazy_static = { workspace = true }
910
serde = { workspace = true, features = ["derive"] }
1011

1112
bumpalo = "3.2"
1213
parking_lot = "0.12"
1314
arc-swap = "1.3"
14-
lazy_static = "1"

site/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 }
1010
hashbrown = { workspace = true, features = ["serde"] }
11+
lazy_static = { workspace = true }
1112
log = { workspace = true }
1213
serde = { workspace = true, features = ["rc"] }
1314
serde_json = { workspace = true }
@@ -24,7 +25,6 @@ semver = "1.0"
2425
ring = "0.16.10"
2526
hex = "0.4.2"
2627
regex = "1"
27-
lazy_static = "1"
2828
reqwest = { version = "0.11", features = ["json", "blocking"] }
2929
toml = "0.7"
3030
rust_team_data = { git = "https://github.com/rust-lang/team" }

0 commit comments

Comments
 (0)