-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.06 KB
/
Copy pathCargo.toml
File metadata and controls
37 lines (34 loc) · 1.06 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
[workspace]
exclude = ["transfer_circuit", "transfer_circuit_v2"]
members = [
"transfer_witness",
"transfer_witness_v2",
"transfer_library",
"transfer_library_v2",
]
resolver = "3"
[workspace.package]
authors = ["Xuyang <xuyang@heliax.dev>"]
edition = "2024"
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/anoma/anomapay-erc20-resource"
version = "3.0.0-rc.2"
[workspace.dependencies]
alloy-primitives = "1.0.23"
alloy-sol-types = "1.0.23"
anoma-rm-risc0 = { version = "2.0.0-rc.5", default-features = false }
anoma-rm-risc0-gadgets = "2.0.0-rc.5"
bincode = "1.3.3"
hex = "0.4"
k256 = { version = "0.13", default-features = false }
lazy_static = "1.5.0"
rand = "0.9.2"
serde = { version = "1.0", features = ["derive"] }
transfer_library = { path = "transfer_library" }
transfer_library_v2 = { path = "transfer_library_v2" }
transfer_witness = { path = "transfer_witness" }
transfer_witness_v2 = { path = "transfer_witness_v2" }
# Always optimize; building and running the guest takes much longer without optimization.
[profile.dev]
opt-level = 3