Skip to content

Commit eec0ed7

Browse files
committed
Move tracing dependencies up the tree
1 parent 4a441da commit eec0ed7

3 files changed

Lines changed: 2 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 0 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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ dashmap.workspace = true
4343
songbird.workspace = true
4444
mini-moka.workspace = true
4545
parking_lot.workspace = true
46-
tracing-subscriber.workspace = true
47-
console-subscriber.workspace = true
46+
console-subscriber = { version = "0.4.1", features = ['parking_lot'] }
4847

4948
tts_core = { path = "tts_core" }
5049
tts_tasks = { path = "tts_tasks" }
@@ -68,8 +67,6 @@ itertools = "0.14"
6867
arrayvec = "0.7.6"
6968
parking_lot = "0.12"
7069
mini-moka = { version = "0.10.3", features = ["sync"] }
71-
console-subscriber = { version = "0.4.1", features = ['parking_lot'] }
72-
tracing-subscriber = { version = "0.3.19", features = ["parking_lot"] }
7370
# TODO: Remove `dashmap` once mini_moka releases a breaking version with dashmap 6.
7471
typesize = { version = "0.1.9", features = ["arrayvec", "dashmap", "details"] }
7572

tts_tasks/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ rust-version = "1.88"
66

77
[dependencies]
88
serde_json = "1.0.111"
9+
tracing-subscriber = { version = "0.3.19", features = ["parking_lot"] }
910

1011
sqlx.workspace = true
1112
tokio.workspace = true
@@ -17,8 +18,6 @@ aformat.workspace = true
1718
serenity.workspace = true
1819
itertools.workspace = true
1920
parking_lot.workspace = true
20-
tracing-subscriber.workspace = true
21-
console-subscriber.workspace = true
2221

2322
tts_core = { path = "../tts_core" }
2423

0 commit comments

Comments
 (0)