This repository was archived by the owner on Oct 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (57 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
66 lines (57 loc) · 1.28 KB
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
59
60
61
62
63
64
65
66
[workspace]
members=["crates/*"]
default-members=[".", "crates/tinywasm", "crates/types", "crates/parser"]
resolver="2"
[workspace.dependencies]
wast="239"
wat="1.239"
wasmparser={version="0.239", default-features=false}
eyre="0.6"
log="0.4"
pretty_env_logger="0.5"
criterion={version="0.7", default-features=false, features=["cargo_bench_support", "rayon"]}
wasm-testsuite={version="0.5"}
indexmap="2.11"
owo-colors={version="4.2"}
serde_json={version="1.0"}
serde={version="1.0", features=["derive"]}
[workspace.package]
version="0.9.0-alpha.0"
rust-version="1.90"
edition="2024"
license="MIT OR Apache-2.0"
authors=["Henry Gressmann <mail@henrygressmann.de>"]
repository="https://github.com/explodingcamera/tinywasm"
categories=["wasm", "no-std"]
keywords=["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