diff --git a/Cargo.lock b/Cargo.lock index ae80076a2..f0848d3ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3053,16 +3053,6 @@ dependencies = [ "unicase", ] -[[package]] -name = "minicov" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c71e683cd655513b99affab7d317deb690528255a0d5f717f1024093c12b169" -dependencies = [ - "cc", - "walkdir", -] - [[package]] name = "minimal-lexical" version = "0.2.1" @@ -3201,7 +3191,6 @@ dependencies = [ "prettytable-rs", "regex", "rustyline", - "serde_json", "tokio", ] @@ -3232,7 +3221,6 @@ dependencies = [ "thiserror", "tokio", "tracing", - "tracing-subscriber", ] [[package]] @@ -3247,7 +3235,6 @@ dependencies = [ "tokio", "tracing", "wasm-bindgen", - "wasm-bindgen-test", ] [[package]] @@ -3558,7 +3545,6 @@ dependencies = [ "nostr-zapper", "thiserror", "tokio", - "tracing", "tracing-subscriber", ] @@ -4489,12 +4475,6 @@ dependencies = [ "regex", ] -[[package]] -name = "scoped-tls" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" - [[package]] name = "scopeguard" version = "1.2.0" @@ -6729,32 +6709,6 @@ version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" -[[package]] -name = "wasm-bindgen-test" -version = "0.3.43" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68497a05fb21143a08a7d24fc81763384a3072ee43c44e86aad1744d6adef9d9" -dependencies = [ - "console_error_panic_hook", - "js-sys", - "minicov", - "scoped-tls", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-bindgen-test-macro", -] - -[[package]] -name = "wasm-bindgen-test-macro" -version = "0.3.43" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b8220be1fa9e4c889b30fd207d4906657e7e90b12e0e6b0c8b8d8709f5de021" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.77", -] - [[package]] name = "weak-table" version = "0.3.2" diff --git a/crates/nostr-cli/Cargo.toml b/crates/nostr-cli/Cargo.toml index e7d1cbf52..81c0348c2 100644 --- a/crates/nostr-cli/Cargo.toml +++ b/crates/nostr-cli/Cargo.toml @@ -23,5 +23,4 @@ once_cell.workspace = true prettytable-rs = "0.10" regex = "1.11.1" rustyline = { version = "14.0", default-features = false, features = ["with-file-history"] } -serde_json = { workspace = true, features = ["std"] } tokio = { workspace = true, features = ["full"] } diff --git a/crates/nostr-database/Cargo.toml b/crates/nostr-database/Cargo.toml index 27582ab87..e61583583 100644 --- a/crates/nostr-database/Cargo.toml +++ b/crates/nostr-database/Cargo.toml @@ -26,4 +26,3 @@ tracing = { workspace = true, features = ["std", "attributes"] } [dev-dependencies] tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] } -tracing-subscriber.workspace = true diff --git a/crates/nostr-indexeddb/Cargo.toml b/crates/nostr-indexeddb/Cargo.toml index 3d0c74d17..6e3b0f4a3 100644 --- a/crates/nostr-indexeddb/Cargo.toml +++ b/crates/nostr-indexeddb/Cargo.toml @@ -20,6 +20,3 @@ thiserror.workspace = true tokio = { workspace = true, features = ["sync"] } tracing = { workspace = true, features = ["std", "attributes"] } wasm-bindgen.workspace = true - -[dev-dependencies] -wasm-bindgen-test = "0.3" diff --git a/crates/nwc/Cargo.toml b/crates/nwc/Cargo.toml index d1d4da7a7..d11b1f7b6 100644 --- a/crates/nwc/Cargo.toml +++ b/crates/nwc/Cargo.toml @@ -22,7 +22,6 @@ nostr = { workspace = true, features = ["std", "nip47"] } nostr-relay-pool.workspace = true nostr-zapper.workspace = true thiserror.workspace = true -tracing = { workspace = true, features = ["std"] } [dev-dependencies] tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }