Skip to content

Commit e0a7e30

Browse files
committed
Add hashbrown as a workspace dependency and update it
1 parent 4a24dd3 commit e0a7e30

File tree

5 files changed

+6
-5
lines changed

5 files changed

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

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

database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dependencies]
88
serde = { workspace = true, features = ["derive"] }
99
log = { workspace = true }
10-
hashbrown = { version = "0.14", features = ["serde"] }
10+
hashbrown = { workspace = true, features = ["serde"] }
1111
rusqlite = { version = "0.28", features = ["bundled"] }
1212
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4", "runtime"] }
1313
anyhow = "1"

intern/Cargo.toml

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

77
[dependencies]
88
serde = { workspace = true, features = ["derive"] }
9+
hashbrown = { workspace = true }
910
bumpalo = "3.2"
1011
parking_lot = "0.12"
1112
arc-swap = "1.3"
12-
hashbrown = "0.14"
1313
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
serde = { workspace = true, features = ["rc"] }
99
serde_json = { workspace = true }
1010
log = { workspace = true }
11+
hashbrown = { workspace = true, features = ["serde"] }
1112
env_logger = "0.10"
1213
anyhow = "1"
1314
futures = "0.3"
@@ -29,7 +30,6 @@ rust_team_data = { git = "https://github.com/rust-lang/team" }
2930
parking_lot = "0.12"
3031
snap = "1"
3132
itertools = "0.10"
32-
hashbrown = { version = "0.14", features = ["serde"] }
3333
arc-swap = "1.3"
3434
database = { path = "../database" }
3535
bytes = "1.0"

0 commit comments

Comments
 (0)