forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (44 loc) · 1.79 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
[package]
name = "mc-ledger-db"
version = "6.1.0"
authors = ["MobileCoin"]
edition = "2021"
license = "GPL-3.0"
readme = "README.md"
rust-version = { workspace = true }
[features]
# The migration_support feature exposes some internals that should only be used by the `mc-ledger-migration` tool.
migration_support = []
test_utils = [
"mc-blockchain-test-utils",
"mc-transaction-core-test-utils",
"mc-transaction-builder/test-only"
]
[dependencies]
mc-account-keys = { path = "../../account-keys" }
mc-blockchain-test-utils = { path = "../../blockchain/test-utils", optional = true }
mc-blockchain-types = { path = "../../blockchain/types" }
mc-common = { path = "../../common", features = ["log"] }
mc-crypto-keys = { path = "../../crypto/keys" }
mc-transaction-builder = { path = "../../transaction/builder" }
mc-transaction-core = { path = "../../transaction/core" }
mc-transaction-core-test-utils = { path = "../../transaction/core/test-utils", optional = true }
mc-util-from-random = { path = "../../util/from-random" }
mc-util-lmdb = { path = "../../util/lmdb" }
mc-util-metrics = { path = "../../util/metrics" }
mc-util-serial = { path = "../../util/serial", features = ["std"] }
mc-util-telemetry = { path = "../../util/telemetry" }
mc-util-test-helper = { path = "../../util/test-helper" }
displaydoc = "0.2"
lazy_static = "1.4"
lmdb-rkv = "0.14"
mockall = "0.12"
prost = { version = "0.12", default-features = false, features = ["prost-derive"] }
rand = "0.8"
tempfile = "3.10.1"
[dev-dependencies]
mc-blockchain-test-utils = { path = "../../blockchain/test-utils" }
mc-crypto-multisig = { path = "../../crypto/multisig" }
mc-rand = "1.0"
mc-transaction-builder = { path = "../../transaction/builder", features = ["test-only"] }
mc-transaction-core-test-utils = { path = "../../transaction/core/test-utils" }