From fe76d91f33b2441de87597ae5885ea9005f35b1c Mon Sep 17 00:00:00 2001 From: Henry Gressmann Date: Tue, 28 Nov 2023 20:06:41 +0100 Subject: refactor: seperate cli crate Signed-off-by: Henry Gressmann --- crates/cli/Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 crates/cli/Cargo.toml (limited to 'crates/cli/Cargo.toml') 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" -- cgit v1.3.1