-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 881 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (37 loc) · 881 Bytes
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
39
40
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.5.0"
license = "MIT"
repository = "https://github.com/samestep/floretta"
edition = "2021"
rust-version = "1.76"
[workspace.dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
floretta = { path = "crates/floretta", version = "=0.5.0", default-features = false }
goldenfile = "1.8"
hashbrown = "0.15"
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 = "22"
wat = "~1.226"
# https://github.com/johnthagen/min-sized-rust
[profile.tiny]
inherits = "release"
codegen-units = 1
lto = true
opt-level = "z"
strip = true