summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml27
1 files changed, 5 insertions, 22 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 49b73a5..b565c4d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,6 @@
[workspace]
members=["crates/*"]
+default-members=[".", "crates/tinywasm", "crates/types", "crates/parser"]
resolver="2"
[profile.wasm]
@@ -25,31 +26,13 @@ edition="2021"
name="wasm-rust"
test=false
-[[bench]]
-name="selfhosted"
-harness=false
-
-[[bench]]
-name="fibonacci"
-harness=false
-
-
-[[bench]]
-name="argon2id"
-harness=false
+[dev-dependencies]
+color-eyre="0.6"
+tinywasm={path="crates/tinywasm", features=["unsafe"]}
+wat={version="1.0"}
[profile.bench]
opt-level=3
lto="thin"
codegen-units=1
debug=true
-
-[dev-dependencies]
-color-eyre="0.6"
-criterion={version="0.5", features=["html_reports"]}
-
-tinywasm={path="crates/tinywasm", features=["unsafe"]}
-wat={version="1.0"}
-wasmi={version="0.31", features=["std"]}
-wasmer={version="4.2", features=["cranelift", "singlepass"]}
-argon2={version="0.5"}