-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
70 lines (66 loc) · 2.22 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
[workspace]
resolver = "2"
members = [
"bridge-cli",
"bridge-sdk/eth-proof",
"bridge-sdk/near-rpc-client",
"bridge-sdk/near-light-client-on-eth",
"bridge-sdk/bridge-clients/solana-bridge-client",
"bridge-sdk/bridge-clients/near-bridge-client",
"bridge-sdk/bridge-clients/evm-bridge-client",
"bridge-sdk/bridge-clients/wormhole-bridge-client",
"bridge-sdk/crypto-utils",
"legacy-bridge-cli",
"legacy-bridge-sdk/eth-proof",
"legacy-bridge-sdk/near-rpc-client",
"legacy-bridge-sdk/near-light-client-on-eth",
"legacy-bridge-sdk/connectors/nep141-connector",
"legacy-bridge-sdk/connectors/eth-connector",
"legacy-bridge-sdk/connectors/bridge-connector-common",
"legacy-bridge-sdk/connectors/fast-bridge",
]
[workspace.dependencies]
sha3 = "0.10.8"
sha2 = "0.10.8"
borsh = "1.5.1"
thiserror = "2.0.3"
ethers = "2.0.14"
ethers-core = "2.0.14"
ethereum-types = "0.14.1"
tokio = { version = "1.38.0", features = ["full"]}
serde = { version = "1.0" }
hex = "0.4.3"
serde_json = "1.0.117"
reqwest = { version = "0.12", features = ["json"] }
cita_trie = "5.0.1"
rlp = "0.5.2"
hasher = "0.1.4"
lazy_static = "1.4.0"
near-jsonrpc-client = "0.15.1"
near-jsonrpc-primitives = "0.28.0"
near-primitives = "0.28.0"
near-crypto = "0.28.0"
derive_builder = "0.20.0"
clap = { version = "4.5", features = ["derive"] }
dotenv = { version = "0.15" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
base64 = "0.22"
near-token = "0.3"
near-contract-standards = "5.5"
omni-types = { git = "https://github.com/near-one/omni-bridge", package = "omni-types", rev = "06b273b9986abf42e0e9a52ca279c6c3a941c405" }
solana-sdk = "2.0.13"
solana-client = "2.0.13"
spl-token = "7.0.0"
spl-token-2022 = "7.0.0"
spl-associated-token-account = "6.0.0"
mpl-token-metadata = "5.1.0"
crypto-shared = { git = "https://github.com/near-one/mpc", package = "crypto-shared", rev = "463172481597ee09b12020b72c61d6b01da7b167" }
openssl-sys = { version = "*", features = ["vendored"] }
[patch.crates-io.curve25519-dalek]
git = "https://github.com/solana-labs/curve25519-dalek.git"
rev = "b500cdc2a920cd5bff9e2dd974d7b97349d61464"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"