forked from ARPA-Network/BLS-TSS-Network
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (39 loc) · 764 Bytes
/
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
[workspace]
members = [
"crates/dkg-core",
"crates/arpa-node",
"crates/threshold-bls",
"crates/log",
"crates/core",
"crates/dal",
"crates/dal/sqlite",
"crates/contract-client",
"crates/user-cli",
]
resolver = "2"
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
# build all our deps in release mode
[profile.dev.package."*"]
opt-level = 0
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = "thin"
incremental = true
debug-assertions = false
[profile.test]
opt-level = 0
incremental = true
debug-assertions = true
debug = true
[workspace.dependencies]
ethers = "2.0"
ethers-core = "2.0"
ethers-signers = "2.0"
ethers-providers = "2.0"
ethers-middleware = "2.0"
ethers-contract-abigen = "2.0"