-
Notifications
You must be signed in to change notification settings - Fork 62
/
Cargo.toml
172 lines (162 loc) · 4.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
[package]
name = "nomic"
version = "9.2.0"
authors = ["Nomic DAO Foundation <foundation@nomic.io>"]
edition = "2021"
default-run = "nomic"
[dependencies]
bitcoin = { version = "0.29.2", features = ["serde", "rand"] }
orga = { git = "https://github.com/nomic-io/orga.git", rev = "3b3d25ade40d81cb64f19335535e3a47bb47778f", features = [
"merk-verify",
"feat-ibc",
] }
thiserror = "1.0.30"
ed = { git = "https://github.com/nomic-io/ed", rev = "a657be856792039ff60c2f67e7920e38cd3acffc" }
clap = { version = "3.2.16", features = ["derive"], optional = true }
tokio = { version = "1.39.2", features = ["full"], optional = true }
base64 = "0.13.0"
js-sys = { version = "0.3.55" }
serde = "1.0.208"
serde_json = "1.0.125"
csv = { version = "1.1.6", optional = true }
bech32 = { version = "0.9.1" }
futures = "0.3.21"
toml_edit = "0.13.4"
tendermint-rpc = { version = "0.38.0", features = [
"http-client",
], optional = true }
bitcoincore-rpc-async = { package = "bitcoincore-rpc-async2", version = "4.0.2", optional = true }
bitcoin-script = "0.1.1"
warp = { version = "0.3.2", optional = true }
derive_more = "0.99.17"
pretty_env_logger = { git = "https://github.com/seanmonstar/pretty-env-logger", rev = "f9e35b6dbbf06de55222c944c9e1e176ce73b3a7" }
reqwest = { version = "0.11.16", optional = true, features = ["json"] }
rand = { version = "0.8.5", optional = true }
sha2 = "0.10.6"
bytes = "1.2.1"
serde-big-array = "0.4.1"
log = "0.4.17"
hex = "0.4.3"
toml = { version = "0.7.2", features = ["parse"] }
split-iter = "0.1.0"
chrono = "0.4.19"
tempfile = "3"
home = { version = "0.5.5", optional = true }
semver = "1.0.18"
ics23 = "0.12.0"
cosmos-sdk-proto = { version = "0.23.0", optional = true }
prometheus_exporter = "0.8.5"
lazy_static = "1.4.0"
prost = "0.13.3"
cosmrs = "0.14.0"
ripemd = "0.1.3"
frost-secp256k1-tr = { git = "https://github.com/ZcashFoundation/frost", rev = "51fa7d09f3742563a35d065afcff6ad486430dac", features = [
"nightly",
], optional = true }
serde-hex = "0.1.0"
alloy-core = { version = "0.8.5", optional = true }
alloy-sol-types = { version = "0.8.5", optional = true }
alloy-contract = { version = "0.3.6", optional = true }
alloy-provider = { version = "0.3.6", optional = true }
alloy-signer-local = { version = "0.3.6", optional = true }
helios-consensus-core = { package = "consensus-core", git = "https://github.com/a16z/helios.git", rev = "0.7.0", optional = true }
ethereum_ssz = { version = "0.6.0", optional = true }
ssz_types = { version = "0.7.0", optional = true }
alloy-trie = { version = "0.6.0", optional = true }
alloy-primitives = { version = "0.8.5", optional = true }
alloy-rlp = { version = "0.3.8", optional = true }
tree_hash = { version = "0.7.0", optional = true }
rlp = { version = "0.5.1", optional = true }
ethereum-triedb = { version = "0.1.1", optional = true }
trie-db = { version = "0.28", optional = true }
rlp-derive = { version = "0.2.0", optional = true }
primitive-types = { version = "0.12", features = ["rlp"], optional = true }
hex-literal = { version = "0.4.1", optional = true }
alloy-rpc-types = { version = "0.3.6", optional = true }
alloy-transport = { version = "0.3.6", optional = true }
alloy-rpc-types-eth = { version = "0.3.6", optional = true }
ruint = { version = "1.12.3", optional = true }
[dev-dependencies]
bitcoind = { version = "0.27.0", features = ["22_0"] }
bitcoin_hashes = "0.11.0"
serde_json = "1.0.68"
serde = "1.0.130"
mutagen = "0.1.2"
curl = "0.4.44"
urlencoding = "2.1.2"
crossbeam-channel = "0.5.8"
chrono = "0.4.19"
serial_test = "2.0.0"
tempfile = "3.12.0"
alloy-node-bindings = "0.3.6"
[build-dependencies]
toml = { version = "0.7.2", features = ["parse"] }
semver = "1.0.18"
glob = "0.3.1"
[features]
default = ["full", "testnet"]
full = [
"bitcoincore-rpc-async",
"clap",
"tokio",
"orga/merk-full",
"orga/abci",
"orga/state-sync",
"csv",
"warp",
"rand",
"reqwest",
"tendermint-rpc",
"cosmos-sdk-proto",
"home",
]
testnet = []
devnet = []
legacy-bin = []
signet = []
ethereum = [
"alloy-core",
"alloy-core/dyn-abi",
"alloy-core/json-abi",
"alloy-sol-types",
"alloy-primitives",
"alloy-trie",
"ethereum-triedb",
"alloy-rlp",
"primitive-types",
"ethereum_ssz",
"ssz_types",
"tree_hash",
"rlp",
"rlp-derive",
"trie-db",
"ruint",
"helios-consensus-core",
"alloy-rpc-types-eth",
]
ethereum-full = [
"ethereum",
"alloy-contract",
"alloy-provider",
"alloy-rpc-types",
"alloy-transport",
"alloy-provider/anvil-node",
"alloy-provider/rpc-api",
"alloy-signer-local",
]
frost = ["frost-secp256k1-tr"]
babylon = ["frost"]
[profile.release]
overflow-checks = true
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
[[bin]]
name = "nomic"
[[bin]]
name = "create-checkpoint"
[[bin]]
name = "eth-bootstrap"
required-features = ["ethereum-full"]
[[test]]
name = "bitcoin"
required-features = ["devnet"]