-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 876 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 876 Bytes
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
[package]
name = "near-bridge-client"
version = "0.3.0"
edition = "2021"
[dependencies]
bitcoin.workspace = true
borsh.workspace = true
derive_builder.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.workspace = true
serde_json.workspace = true
serde_with.workspace = true
tracing.workspace = true
near-rpc-client = { path = "../../near-rpc-client" }
bridge-connector-common = { path = "../../connectors/bridge-connector-common" }
utxo-utils = { path = "../../utxo-utils" }
base64 = "0.21.7"
futures = "0.3.31"
crypto-shared = { git = "https://github.com/near/mpc_old", rev = "0afee9004a1b1c3386940e60c28cff7cf1b5978c" }
k256 = "0.13.1"
[lib]
path = "src/near_bridge_client.rs"