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/cli/Cargo.toml | |
| parent | 1256c4248d2a3a9f73c2a14d997a337ba0eee2b4 (diff) | |
refactor: seperate cli crate
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/cli/Cargo.toml')
| -rw-r--r-- | crates/cli/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml new file mode 100644 index 0000000..cdd0266 --- /dev/null +++ b/crates/cli/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name="tinywasm-cli" +version="0.0.0" +edition="2021" + +[[bin]] +name="tinywasm" +path="bin.rs" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +tinywasm={path="../core"} +argh="0.1" +color-eyre="0.6" |
