forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 1.25 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
[package]
name = "mc-ledger-distribution"
version = "6.1.0"
authors = ["MobileCoin"]
edition = "2021"
license = "GPL-3.0"
readme = "README.md"
rust-version = { workspace = true }
[[bin]]
name = "ledger-distribution"
path = "src/main.rs"
[dependencies]
mc-api = { path = "../../api" }
mc-blockchain-types = { path = "../../blockchain/types" }
mc-common = { path = "../../common", features = ["loggers"] }
mc-ledger-db = { path = "../../ledger/db" }
mc-transaction-core = { path = "../../transaction/core" }
mc-util-telemetry = { path = "../../util/telemetry", features = ["jaeger"] }
clap = { version = "4.5", features = ["derive", "env"] }
dirs = "5.0"
displaydoc = "0.2"
protobuf = "2.27.1"
retry = "2.0"
# TODO: Replace with https://github.com/awslabs/aws-sdk-rust when it is ready.
rusoto_core = { version = "0.48.0", features = ["rustls"], default_features = false }
rusoto_s3 = { version = "0.48.0", features = ["rustls"], default_features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["rt-multi-thread"] }
url = "2.5"
[dev-dependencies]
mc-ledger-db = { path = "../../ledger/db", features = ["test_utils"] }
mc-util-test-helper = { path = "../../util/test-helper" }
tempfile = "3"
walkdir = "2"