-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
58 lines (49 loc) · 1.05 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[workspace]
members=["crates/*"]
default-members=[".", "crates/tinywasm", "crates/types", "crates/parser"]
resolver="2"
[workspace.dependencies]
wast="221"
wat="1.221"
eyre="0.6"
log="0.4"
pretty_env_logger="0.5"
criterion={version="0.5", default-features=false, features=["cargo_bench_support", "rayon"]}
[workspace.package]
version="0.9.0-alpha.0"
rust-version="1.81"
edition="2021"
license="MIT OR Apache-2.0"
authors=["Henry Gressmann <mail@henrygressmann.de>"]
repository="https://github.com/explodingcamera/tinywasm"
[package]
name="tinywasm-root"
version.workspace=true
publish=false
edition.workspace=true
rust-version.workspace=true
[[example]]
name="wasm-rust"
test=false
[dev-dependencies]
wat={workspace=true}
eyre={workspace=true}
pretty_env_logger={workspace=true}
tinywasm={path="crates/tinywasm"}
[profile.bench]
opt-level=3
lto="thin"
codegen-units=1
debug=true
[profile.profiling]
inherits="release"
debug=true
[profile.wasm]
opt-level=3
lto="thin"
codegen-units=1
panic="abort"
inherits="release"
[profile.samply]
inherits="release"
debug=true