summaryrefslogtreecommitdiff
path: root/crates/parser/Cargo.toml
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2025-11-27 22:11:43 +0100
committerHenry Gressmann <mail@henrygressmann.de>2025-11-27 22:11:43 +0100
commitf7f77cd3026e39a2c29faf539575ef57165c81db (patch)
treea3de97f1b68a0bdafd32d5d52308e8045b6c150f /crates/parser/Cargo.toml
parent3e58e9846fe613f34e72d040463be5ab7e191e8b (diff)
chore: remove unstable-simd feature, rename logging feature to log
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/parser/Cargo.toml')
-rw-r--r--crates/parser/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml
index 3cbeee1..598a5b7 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -16,6 +16,6 @@ log={workspace=true, optional=true}
tinywasm-types={version="0.9.0-alpha.0", path="../types", default-features=false}
[features]
-default=["std", "logging"]
-logging=["log"]
+default=["std", "log"]
+log=["dep:log"]
std=["tinywasm-types/std", "wasmparser/std"]