-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (31 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
32 lines (31 loc) · 1.21 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
[package]
name = "bridge-cli"
version = "0.3.45"
edition = "2021"
repository = "https://github.com/Near-One/bridge-sdk-rs"
rust-version = "1.88.0"
[dependencies]
clap.workspace = true
dotenv.workspace = true
tokio.workspace = true
alloy.workspace = true
near-primitives.workspace = true
serde.workspace = true
serde_json.workspace = true
reqwest.workspace = true
tracing-subscriber.workspace = true
tracing.workspace = true
omni-types.workspace = true
solana-client.workspace = true
solana-sdk.workspace = true
light-client.workspace = true
omni-connector = { path = "../bridge-sdk/connectors/omni-connector" }
near-bridge-client = { path = "../bridge-sdk/bridge-clients/near-bridge-client" }
evm-bridge-client = { path = "../bridge-sdk/bridge-clients/evm-bridge-client" }
solana-bridge-client = { path = "../bridge-sdk/bridge-clients/solana-bridge-client" }
wormhole-bridge-client = { path = "../bridge-sdk/bridge-clients/wormhole-bridge-client" }
utxo-bridge-client = { path = "../bridge-sdk/bridge-clients/utxo-bridge-client" }
starknet-bridge-client = { path = "../bridge-sdk/bridge-clients/starknet-bridge-client" }
utxo-utils = { path = "../bridge-sdk/utxo-utils" }
near-sdk.workspace = true
near-mpc-contract-interface.workspace = true