Skip to content

Commit

Permalink
Prepare for wasmi_wasi crate release (#668)
Browse files Browse the repository at this point in the history
prepare for wasmi_wasi crate release
  • Loading branch information
Robbepop committed Feb 11, 2023
1 parent ee67df9 commit 183acba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
7 changes: 3 additions & 4 deletions crates/cli/Cargo.toml
Expand Up @@ -3,7 +3,6 @@ name = "wasmi_cli"
version = "0.26.0"
documentation = "https://docs.rs/wasmi/"
description = "WebAssembly interpreter"
publish = true
authors.workspace = true
repository.workspace = true
edition.workspace = true
Expand All @@ -13,11 +12,11 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
wasmi = { path = "../wasmi", version = "0.26.0" }
wasmi = { version = "0.26.0", path = "../wasmi" }
wasmi_wasi = { version = "0.1.0", path = "../wasi" }
wat = "1"
anyhow = "1"
wasmi_wasi = { path = "../wasi" }

[dev-dependencies]
assert_cmd = "2.0.7"
Expand Down
13 changes: 9 additions & 4 deletions crates/wasi/Cargo.toml
@@ -1,12 +1,17 @@
[package]
name = "wasmi_wasi"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
documentation = "https://docs.rs/wasmi_wasi"
description = "WASI library support for the wasmi interpreter"
authors.workspace = true
repository.workspace = true
edition.workspace = true
readme.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true

[dependencies]

wasi-common = "2.0"
wasi-cap-std-sync = "2.0"
wiggle = { version = "2.0", default-features = false, features = ["wiggle_metadata"] }
Expand Down

0 comments on commit 183acba

Please sign in to comment.