-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 835 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
version = "0.4.0"
license = "MIT"
repository = "https://github.com/samestep/floretta"
edition = "2024"
[workspace.dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
floretta = { path = "crates/floretta", version = "=0.4.0", default-features = false }
goldenfile = "1.8"
itertools = "0.14"
regex = "1"
rstest = "0.24"
termcolor = "1"
thiserror = "2"
wasm-encoder = { version = "0.226", default-features = false, features = [
"wasmparser",
] }
wasmparser = { version = "0.226", default-features = false, features = [
"features",
"validate",
] }
wasmprinter = "0.226"
wasmtime = "30"
wat = "1"
# https://github.com/johnthagen/min-sized-rust
[profile.tiny]
codegen-units = 1
inherits = "release"
lto = true
opt-level = "z"
strip = true