Skip to content

Commit c62116c

Browse files
committed
fix warn with tokio runtime
1 parent 09338bb commit c62116c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,18 @@ readme = "README.md"
1616
[workspace.dependencies]
1717
anyhow = { version = "1.0.100" }
1818
clap = { version = "4.5.49", features = ["derive"] }
19-
config = { version = "0.15.16", default-features = true }
20-
dotenvy = { version = "0.15" }
2119
dirs = {version = "6.0.0"}
2220
futures-util = { version = "0.3.31" }
2321
global_utils = { path = "./crates/global_utils" }
2422
nostr = { version = "0.43.1", features = ["std"] }
2523
nostr-sdk = { version = "0.43.0" }
24+
nostr_relay_connector = { path = "./crates/nostr_relay_connector"}
25+
nostr_relay_processor = { path = "./crates/nostr_relay_processor"}
2626
serde = { version = "1.0.228", features = ["derive"] }
2727
serde_json = { version = "1.0.145" }
2828
thiserror = { version = "2.0.17" }
29-
tokio = { version = "1.48.0", features = ["macros", "test-util"] }
29+
tokio = { version = "1.48.0", features = ["macros", "test-util", "rt", "rt-multi-thread"] }
3030
tracing = { version = "0.1.41" }
3131
tracing-appender = { version = "0.2.3" }
3232
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
3333
url = { version = "2.5.7" }
34-
nostr_relay_connector = { path = "./crates/nostr_relay_connector"}
35-
nostr_relay_processor = { path = "./crates/nostr_relay_processor"}

0 commit comments

Comments
 (0)