We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e681b3 commit a143be9Copy full SHA for a143be9
Cargo.toml
@@ -19,14 +19,14 @@ rust-version = "1.65"
19
20
[features]
21
default = ["std"]
22
-std = ["slog/std"]
+std = ["slog/std", "once_cell/std", "tracing-core/std"]
23
# Enables serialization of slog key-value pairs to a constructed field, `slog.kv`
24
kv = []
25
26
[dependencies]
27
-once_cell = "1"
28
-slog = "2.8"
29
-tracing-core = "0.1"
+once_cell = { version = "1", default-features = false }
+slog = { version = "2.8", default-features = false }
+tracing-core = { version = "0.1", default-features = false }
30
31
[dev-dependencies]
32
log = "0.4"
0 commit comments