diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2023-11-28 20:06:41 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2023-11-28 20:06:41 +0100 |
| commit | fe76d91f33b2441de87597ae5885ea9005f35b1c (patch) | |
| tree | bda08242444d91dbf55e5e96233ae826c5e4e376 /crates/core/Cargo.toml | |
| parent | 1256c4248d2a3a9f73c2a14d997a337ba0eee2b4 (diff) | |
refactor: seperate cli crate
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/core/Cargo.toml')
| -rw-r--r-- | crates/core/Cargo.toml | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index e8c52b9..2f71aa9 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,21 +1,16 @@ [package] -name="wasmcore" -version="0.1.0" +name="tinywasm" +version="0.0.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} +thiserror={version="1.0", package="thiserror-core", default-features=false} +wasmparser={version="0.100", package="wasmparser-nostd", default-features=false} +tracing={version="0.1.38", default-features=false} # logging [features] default=["std"] -std=[] +std=["thiserror/std"] |
