diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2023-11-21 16:48:33 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2023-11-21 16:48:33 +0100 |
| commit | 1256c4248d2a3a9f73c2a14d997a337ba0eee2b4 (patch) | |
| tree | 85cf0b7a1bc33b9ffb40837295053285c14e8340 /crates/core/Cargo.toml | |
initial commit
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
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=[] |
