forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (58 loc) · 1.53 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
[package]
name = "sui-bridge"
version = "0.1.0"
authors = ["Mysten Labs <build@mystenlabs.com>"]
license = "Apache-2.0"
publish = false
edition = "2021"
[dependencies]
ethers = "2.0"
tokio = { workspace = true, features = ["full"] }
sui-types.workspace = true
sui-common.workspace = true
arc-swap.workspace = true
num_enum.workspace = true
move-core-types.workspace = true
url.workspace = true
futures.workspace = true
once_cell.workspace = true
telemetry-subscribers.workspace = true
prometheus.workspace = true
async-trait.workspace = true
typed-store-derive.workspace = true
rocksdb.workspace = true
typed-store.workspace = true
mysten-metrics.workspace = true
sui-sdk.workspace = true
sui-config.workspace = true
clap.workspace = true
tracing.workspace = true
bin-version.workspace = true
bcs.workspace = true
sui-json-rpc-types.workspace = true
serde.workspace = true
serde_with.workspace = true
serde_json.workspace = true
eyre.workspace = true
tempfile.workspace = true
axum.workspace = true
anyhow.workspace = true
reqwest.workspace = true
fastcrypto.workspace = true
tap.workspace = true
rand.workspace = true
lru.workspace = true
shared-crypto.workspace = true
backoff = { version = "0.4.0", features = [
"futures",
] }
[dev-dependencies]
sui-types = { workspace = true, features = ["test-utils"] }
sui-json-rpc-types = { workspace = true, features = ["test-utils"] }
sui-config.workspace = true
sui-test-transaction-builder.workspace = true
test-cluster.workspace = true
hex-literal = "0.3.4"
[[bin]]
name = "sui-bridge-cli"
path = "src/tools/cli.rs"