-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
28 lines (25 loc) · 1.04 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
[workspace]
members = ["src/ethereum-canister", "src/contracts-abi", "src/interface"]
resolver = "2"
[workspace.dependencies]
contracts-abi = { path = "src/contracts-abi" }
ethers-contract = { version = "2.0.9", default-features = false, features = [
"abigen",
] }
ethers-core = "2.0.9"
eyre = "0.6.8"
helios_client = { package = "client", git = "https://github.com/eigerco/helios", rev = "62c7237" }
helios_common = { package = "common", git = "https://github.com/eigerco/helios", rev = "62c7237" }
helios_config = { package = "config", git = "https://github.com/eigerco/helios", rev = "62c7237" }
helios_execution = { package = "execution", git = "https://github.com/eigerco/helios", rev = "62c7237" }
interface = { path = "src/interface" }
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
# Uncomment to apply local changes of Helios
#[patch.'https://github.com/eigerco/helios']
#client = { path = "../helios/client" }
#common = { path = "../helios/common" }
#config = { path = "../helios/config" }
#execution = { path = "../helios/execution" }