diff options
Diffstat (limited to 'crates/core/Cargo.toml')
| -rw-r--r-- | crates/core/Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml new file mode 100644 index 0000000..e8c52b9 --- /dev/null +++ b/crates/core/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name="wasmcore" +version="0.1.0" +edition="2021" + +[lib] +name="wasmcore" +path="src/lib.rs" + +[[bin]] +name="wasmcore" +path="src/bin.rs" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +wasmparser={version="0.118.0", default-features=false} + +[features] +default=["std"] +std=[] |
