-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (45 loc) · 982 Bytes
/
Cargo.toml
File metadata and controls
56 lines (45 loc) · 982 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "wagmi"
version = "0.1.0"
edition = "2021"
[features]
wasm_debug = []
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
paste = "1.0.15"
clap = { version = "4", features = ["derive"] }
[dev-dependencies]
criterion = { version = "0.5", default-features = false, features = ["cargo_bench_support"] }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
overflow-checks = false
[profile.bench]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = "fat"
codegen-units = 1
panic = "abort"
[[bench]]
name = "coremark"
harness = false
[[bin]]
name = "wagmi-run"
path = "src/bin/wagmi_run.rs"
[[bin]]
name = "wagmi-inspect"
path = "src/bin/wagmi_inspect.rs"
[[bin]]
name = "wagmi-validate"
path = "src/bin/wagmi_validate.rs"
[[bin]]
name = "wagmi-example-basic"
path = "src/bin/wagmi_example_basic.rs"
[[bin]]
name = "wagmi-example-host"
path = "src/bin/wagmi_example_host.rs"