summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-01-31 00:03:42 +0100
committerHenry Gressmann <mail@henrygressmann.de>2024-01-31 00:03:42 +0100
commit6850e8bc669171c658696655f4f31996d6e934af (patch)
tree6efb61f6dc9790dd219a8bf7e39ab2434af3140a /Cargo.toml
parent712b7da4f6b20a9754dd78be632988bbb66f2cbe (diff)
chore: overall code cleanup
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
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"}