Skip to content

Commit

Permalink
fix: missing versions
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Gressmann <[email protected]>
  • Loading branch information
explodingcamera committed Dec 9, 2023
1 parent c200240 commit 4626fc0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions crates/tinywasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 4626fc0

Please sign in to comment.