summaryrefslogtreecommitdiff
path: root/crates/parser/Cargo.toml
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-01-29 20:39:31 +0100
committerHenry Gressmann <mail@henrygressmann.de>2024-01-29 20:39:31 +0100
commitf8651619e576ac97209b72660144568b54eb965c (patch)
tree6bbf232f2b7444d02ef6cb2192759f628ce2ab8f /crates/parser/Cargo.toml
parent4c9385df1bcc0098c7e1db7a2f7c7e3dbeb00c8b (diff)
feat: pre-processed wasm
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 1592f85..df8acce 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -11,9 +11,9 @@ repository.workspace=true
# fork of wasmparser with no_std support, see https://github.com/bytecodealliance/wasmtime/issues/3495
wasmparser={version="0.100", package="wasmparser-nostd", default-features=false}
log={version="0.4", optional=true}
-tinywasm-types={version="0.3.0-alpha.0", path="../types"}
+tinywasm-types={version="0.3.0-alpha.0", path="../types", default-features=false}
[features]
default=["std", "logging"]
logging=["log"]
-std=[]
+std=["tinywasm-types/std"]