Skip to content

Commit d4476a5

Browse files
committed
Make internal dependencies stand out more
1 parent d44adbd commit d4476a5

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

collector/Cargo.toml

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

1919
thiserror = "1"
2020
tempfile = "3"
@@ -23,7 +23,6 @@ semver = "1.0"
2323
reqwest = { version = "0.11", features = ["json"] }
2424
xz2 = "0.1.3"
2525
tar = "0.4"
26-
tokio = { version = "1.6", features = ["rt", "process"] }
2726
futures = "0.3.5"
2827
jobserver = "0.1.21"
2928
snap = "1"

database/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ rusqlite = { version = "0.28", features = ["bundled"] }
1818
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4", "runtime"] }
1919
async-trait = "0.1"
2020
tokio = { version = "1.6", features = ["sync", "macros"] }
21-
intern = { path = "../intern" }
2221
reqwest = { version = "0.11", features = ["blocking"] }
2322
postgres-native-tls = "0.5"
2423
native-tls = "0.2"
2524
futures-util = "0.3.5"
2625
bytes = "1"
2726
csv = "1"
2827
x509-cert = { version = "0.2.5", features = ["pem"] }
28+
29+
intern = { path = "../intern" }

site/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ parking_lot = "0.12"
3232
snap = "1"
3333
itertools = "0.10"
3434
arc-swap = "1.3"
35-
database = { path = "../database" }
3635
bytes = "1.0"
3736
url = "2"
3837
analyzeme = "12.0.0"
@@ -47,13 +46,13 @@ humansize = "2"
4746
lru = "0.12.0"
4847
ruzstd = "0.7.0"
4948

49+
collector = { path = "../collector" }
50+
database = { path = "../database" }
51+
5052
[target.'cfg(unix)'.dependencies]
5153
jemallocator = "0.5"
5254
jemalloc-ctl = "0.5"
5355

54-
[dependencies.collector]
55-
path = "../collector"
56-
5756
[build-dependencies]
5857
serde = { workspace = true, features = ["derive"] }
5958
serde_json = { workspace = true }

0 commit comments

Comments
 (0)