-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1.31 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
33
34
35
36
37
38
[package]
name = "api-blockchain-scanner-lib"
edition.workspace = true
rust-version.workspace = true
version.workspace = true
license.workspace = true
[dependencies]
api-server-common = { path = "../api-server-common" }
chainstate = { path = "../../chainstate" }
common = { path = "../../common" }
constraints-value-accumulator = { path = "../../chainstate/constraints-value-accumulator" }
logging = { path = "../../logging" }
mempool = { path = "../../mempool" }
node-comm = { path = "../../wallet/wallet-node-client" }
orders-accounting = { path = "../../orders-accounting" }
pos-accounting = { path = "../../pos-accounting" }
randomness = { path = "../../randomness" }
serialization = { path = "../../serialization" }
tokens-accounting = { path = "../../tokens-accounting" }
tx-verifier = { path = "../../chainstate/tx-verifier" }
utils = { path = "../../utils" }
async-trait.workspace = true
futures = { workspace = true, default-features = false }
thiserror.workspace = true
tokio = { workspace = true, features = ["full"] }
[dev-dependencies]
chainstate-storage = { path = "../../chainstate/storage", features = [
"expensive-reads",
] }
chainstate-test-framework = { path = "../../chainstate/test-framework" }
crypto = { path = "../../crypto" }
test-utils = { path = "../../test-utils" }
ctor.workspace = true
rstest.workspace = true