summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2023-12-09 15:11:37 +0100
committerHenry Gressmann <mail@henrygressmann.de>2023-12-09 15:11:37 +0100
commit4626fc03346218a0289bc872403e4710b1c80cd0 (patch)
tree1e31c207358a4266e658834040634c79db7da1d8 /crates
parentc200240f35d07411c93caadc51b5087a3e22915d (diff)
fix: missing versions
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates')
-rw-r--r--crates/cli/Cargo.toml2
-rw-r--r--crates/parser/Cargo.toml2
-rw-r--r--crates/tinywasm/Cargo.toml4
3 files changed, 4 insertions, 4 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml
index c717606..8c4ec47 100644
--- a/crates/cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
@@ -14,7 +14,7 @@ path="src/bin.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-tinywasm={path="../tinywasm", features=["std", "parser"]}
+tinywasm={version="0.0.2", path="../tinywasm", features=["std", "parser"]}
argh="0.1"
color-eyre={version="0.6", default-features=false}
log="0.4"
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml
index 8755c43..3c59fbf 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -12,7 +12,7 @@ repository.workspace=true
# TODO: create dependency free parser
wasmparser={version="0.100", package="wasmparser-nostd", default-features=false}
log={version="0.4", optional=true}
-tinywasm-types={path="../types"}
+tinywasm-types={version="0.0.2", path="../types"}
[features]
default=["std", "logging"]
diff --git a/crates/tinywasm/Cargo.toml b/crates/tinywasm/Cargo.toml
index cddff59..6741357 100644
--- a/crates/tinywasm/Cargo.toml
+++ b/crates/tinywasm/Cargo.toml
@@ -13,8 +13,8 @@ path="src/lib.rs"
[dependencies]
log={version="0.4", optional=true}
-tinywasm-parser={path="../parser", default-features=false, optional=true}
-tinywasm-types={path="../types", default-features=false}
+tinywasm-parser={version="0.0.2", path="../parser", default-features=false, optional=true}
+tinywasm-types={version="0.0.2", path="../types", default-features=false}
[features]
default=["std", "parser", "logging"]