-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
45 lines (41 loc) · 1.15 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
38
39
40
41
42
43
44
45
[workspace.package]
authors = ["Near One <info@nearone.org>"]
repository = "https://github.com/Near-One/rainbow-bridge"
[workspace]
members = [
"eth2-client",
"eth-client",
"eth-prover",
"eth-types",
"admin-controlled"
]
[profile.release]
codegen-units = 1
# Tell `rustc` to optimize for small code size.
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
[workspace.dependencies]
near-sdk = "4.1.1"
borsh = "0.9.3"
rlp = "0.5.2"
rlp-derive = "0.1.0"
ethereum-types = "0.14.1"
tree_hash = "0.8"
tree_hash_derive = "0.8"
ethereum_ssz = "0.7"
ethereum_ssz_derive = "0.7"
ethereum_serde_utils = "0.7"
ethereum_hashing = "0.7.0"
derive_more = "^0.99.2"
hex = "0.4.2"
bitvec = "1.0.0"
near-plugins = { git = "https://github.com/aurora-is-near/near-plugins", tag = "v0.1.0" }
[patch]
[patch.crates-io]
ethereum_hashing = { path = "eth2_hashing" }
ethereum-types = { git = "https://github.com/aurora-is-near/parity-common", tag = "v0.14.1-wasm" }
rlp = { git = "https://github.com/aurora-is-near/parity-common", tag = "v0.14.1-wasm" }
rlp-derive = { git = "https://github.com/aurora-is-near/parity-common", tag = "v0.14.1-wasm" }