-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
66 lines (57 loc) · 1.6 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
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.package]
version = "0.2.3"
edition = "2021"
license = "MIT OR Apache-2.0"
documentation = "https://docs.arpanetwork.io/"
repository = "https://github.com/ARPA-Network/BLS-TSS-Network"
homepage = "https://github.com/ARPA-Network/BLS-TSS-Network"
keywords = ["arpa", "randcast", "DKG", "BLS", "threshold"]
exclude = ["scripts/", "tests/", "test/", "docker/", "docs/"]
[workspace]
members = [
"crates/arpa-node",
"crates/user-cli",
"crates/core",
"crates/dkg-core",
"crates/threshold-bls",
"crates/log",
"crates/dal",
"crates/dal/sqlite",
"crates/contract-client",
]
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]
arpa-log = { version = "0.2.3", path = "crates/log" }
arpa-core = { version = "0.2.3", path = "crates/core" }
arpa-dal = { version = "0.2.3", path = "crates/dal" }
arpa-sqlite-db = { version = "0.2.3", path = "crates/dal/sqlite" }
arpa-contract-client = { version = "0.2.3", path = "crates/contract-client" }
dkg-core = { version = "0.2.3", path = "crates/dkg-core" }
threshold-bls = { version = "0.2.3", path = "crates/threshold-bls", default-features = false, features = [
"bn254",
] }
ethers = "2.0"
ethers-core = "2.0"
ethers-signers = "2.0"
ethers-providers = "2.0"
ethers-middleware = "2.0"
ethers-contract-abigen = "2.0"