Skip to content

Commit e87e6aa

Browse files
committed
Enable tracing-subscriber default features
1 parent 7db7252 commit e87e6aa

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ once_cell = "1.18"
2323
thiserror = "1.0"
2424
tokio = { version = "1", default-features = false }
2525
tracing = { version = "0.1", default-features = false }
26-
tracing-subscriber = { version = "0.3", default-features = false }
26+
tracing-subscriber = "0.3"
2727
uniffi = { git = "https://github.com/mozilla/uniffi-rs", rev = "59c1e3ef15b1ea5143402e25264e933dbf8d1a1f" }
2828
url-fork = { version = "3.0", default-features = false }
2929
wasm-bindgen = { version = "0.2", default-features = false }

bindings/nostr-sdk-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ crate-type = ["lib", "cdylib", "staticlib"]
1313
nostr-ffi = { path = "../nostr-ffi" }
1414
nostr-sdk = { path = "../../crates/nostr-sdk", default-features = false, features = ["all-nips", "blocking", "sqlite"] }
1515
tracing = { workspace = true, features = ["std"] }
16-
tracing-subscriber = { workspace = true, features = ["std", "fmt"] }
16+
tracing-subscriber.workspace = true
1717
uniffi = { workspace = true }

bindings/nostr-sdk-js/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ js-sys.workspace = true
1414
nostr-js = { path = "../nostr-js" }
1515
nostr-sdk = { path = "../../crates/nostr-sdk", default-features = false, features = ["all-nips", "indexeddb"] }
1616
tracing.workspace = true
17-
tracing-subscriber = { workspace = true, features = ["std", "registry"] }
17+
tracing-subscriber.workspace = true
1818
wasm-bindgen.workspace = true
1919
wasm-bindgen-futures.workspace = true
2020

crates/nostr-database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ tracing = { workspace = true, features = ["std", "attributes"] }
2727

2828
[dev-dependencies]
2929
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
30-
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
30+
tracing-subscriber = { workspace = true, features = ["env-filter"] }

crates/nostr-database/fuzz/perf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77
nostr-database = { path = "../../" }
88
serde_json = "1.0"
99
tokio = { workspace = true, features = ["full"] }
10-
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
10+
tracing-subscriber = { workspace = true, features = ["env-filter"] }

crates/nostr-rocksdb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ tracing = { workspace = true, features = ["std", "attributes"] }
2222

2323
[dev-dependencies]
2424
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
25-
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
25+
tracing-subscriber = { workspace = true, features = ["env-filter"] }

crates/nostr-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ nostr-indexeddb = { version = "0.26", path = "../nostr-indexeddb", optional = tr
5252
tokio = { workspace = true, features = ["rt", "macros", "sync"] }
5353

5454
[dev-dependencies]
55-
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
55+
tracing-subscriber = { workspace = true, features = ["env-filter"] }
5656

5757
[[example]]
5858
name = "client-with-opts"

crates/nostr-sqlite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ tracing = { workspace = true, features = ["std", "attributes"] }
2323

2424
[dev-dependencies]
2525
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
26-
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
26+
tracing-subscriber = { workspace = true, features = ["env-filter"] }

crates/nostr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ web-sys = { workspace = true, features = ["Window"], optional = true }
7979
[dev-dependencies]
8080
csv = "1.1.5"
8181
num_cpus = "1.15.0"
82-
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
82+
tracing-subscriber = { workspace = true, features = ["env-filter"] }
8383

8484
[[example]]
8585
name = "keys"

0 commit comments

Comments
 (0)