-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.65 KB
/
Cargo.toml
File metadata and controls
53 lines (48 loc) · 1.65 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
46
47
48
49
50
51
52
53
[package]
name = "omni-connector"
version = "0.4.0"
edition = "2021"
rust-version = "1.88.0"
[dependencies]
sha3.workspace = true
bitcoin.workspace = true
borsh.workspace = true
alloy.workspace = true
derive_builder.workspace = true
hex.workspace = true
near-crypto.workspace = true
near-jsonrpc-client.workspace = true
near-primitives.workspace = true
near-token.workspace = true
near-contract-standards.workspace = true
near-sdk.workspace = true
omni-types.workspace = true
serde_json.workspace = true
tracing.workspace = true
solana-sdk.workspace = true
light-client.workspace = true
eth-proof = { path = "../../eth-proof" }
near-rpc-client = { path = "../../near-rpc-client" }
zcash_primitives.workspace = true
zcash_transparent.workspace = true
zcash_protocol.workspace = true
pczt.workspace = true
bip0039.workspace = true
zcash_keys.workspace = true
orchard.workspace = true
zcash_address.workspace = true
ripemd.workspace = true
sha2.workspace = true
crypto-utils = { path = "../../crypto-utils" }
utxo-utils = { path = "../../utxo-utils" }
bridge-connector-common = { path = "../bridge-connector-common" }
near-bridge-client = { path = "../../bridge-clients/near-bridge-client" }
evm-bridge-client = { path = "../../bridge-clients/evm-bridge-client" }
solana-bridge-client = { path = "../../bridge-clients/solana-bridge-client" }
wormhole-bridge-client = { path = "../../bridge-clients/wormhole-bridge-client" }
utxo-bridge-client = { path = "../../bridge-clients/utxo-bridge-client" }
starknet-bridge-client = { path = "../../bridge-clients/starknet-bridge-client" }
starknet.workspace = true
near-mpc-contract-interface.workspace = true
[lib]
path = "src/omni_connector.rs"