summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorHenry <mail@henrygressmann.de>2026-04-26 21:59:15 +0200
committerHenry <mail@henrygressmann.de>2026-04-26 22:16:41 +0200
commita8d7f3752416f76e9eb9e429c569f2bef70f1b51 (patch)
treedaffb517ca1ab6dee47a10a22885ae39126d13c2 /crates
parent463a3a6f56a5ca06cda890fd6fe7f16485ef70a0 (diff)
chore: v0.9.0-alpha.0
Signed-off-by: Henry <mail@henrygressmann.de>
Diffstat (limited to 'crates')
-rw-r--r--crates/cli/Cargo.toml18
-rw-r--r--crates/parser/Cargo.toml5
-rw-r--r--crates/tinywasm/Cargo.toml9
3 files changed, 17 insertions, 15 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml
index add21d3..1aed0cc 100644
--- a/crates/cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
@@ -23,12 +23,20 @@ path="src/bin.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-clap={version="4.5", features=["derive"]}
-clap_complete="4.5"
+clap={version="4.6", features=["derive"]}
+clap_complete="4.6"
eyre.workspace=true
log.workspace=true
pretty_env_logger.workspace=true
-tinywasm={version="0.9.0-alpha.0", path="../tinywasm", features=["std", "parser"]}
+tinywasm={workspace=true, features=[
+ "std",
+ "parser",
+ "log",
+ "archive",
+ "canonicalize-nans",
+ "debug",
+ "parallel-parser",
+]}
wat={workspace=true, optional=true}
wast={workspace=true, optional=true}
owo-colors={workspace=true}
@@ -40,6 +48,6 @@ wat=["dep:wat"]
wast=["dep:wast"]
[dev-dependencies]
-assert_cmd="2.0"
+assert_cmd="2.2"
predicates="3.1"
-tempfile="3.20"
+tempfile="3.27"
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml
index 1c228c4..417253d 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -14,13 +14,10 @@ readme="README.md"
[dependencies]
wasmparser={workspace=true, features=["validate", "features", "simd"]}
log={workspace=true, optional=true}
-tinywasm-types={version="0.9.0-alpha.0", path="../types", default-features=false}
+tinywasm-types={workspace=true}
[features]
default=["std", "log", "parallel"]
log=["dep:log"]
std=["tinywasm-types/std", "wasmparser/std"]
parallel=["std"]
-
-[dev-dependencies]
-wat.workspace=true
diff --git a/crates/tinywasm/Cargo.toml b/crates/tinywasm/Cargo.toml
index 15ae832..fd33d1a 100644
--- a/crates/tinywasm/Cargo.toml
+++ b/crates/tinywasm/Cargo.toml
@@ -21,18 +21,15 @@ rustdoc-args=["--cfg", "docsrs"]
[dependencies]
log={workspace=true, optional=true}
-tinywasm-parser={version="0.9.0-alpha.0", path="../parser", default-features=false, optional=true}
-tinywasm-types={version="0.9.0-alpha.0", path="../types", default-features=false}
+tinywasm-parser={workspace=true, optional=true}
+tinywasm-types={workspace=true}
libm={version="0.2", default-features=false}
[dev-dependencies]
wasm-testsuite.workspace=true
-tinywasm-cli={version="0.9.0-alpha.0", path="../cli", features=["wast"]}
-indexmap.workspace=true
-wast.workspace=true
+tinywasm-cli={path="../cli", features=["wast", "wat"]}
wat.workspace=true
eyre.workspace=true
-pretty_env_logger.workspace=true
criterion.workspace=true
owo-colors.workspace=true
serde_json.workspace=true