-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 987 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 987 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
31
32
33
[package]
name = "api-server-common"
edition.workspace = true
rust-version.workspace = true
version.workspace = true
license.workspace = true
[dependencies]
common = { path = "../../common" }
crypto = { path = "../../crypto/" }
logging = { path = "../../logging" }
orders-accounting = { path = "../../orders-accounting" }
pos-accounting = { path = "../../pos-accounting" }
serialization = { path = "../../serialization" }
mempool = { path = "../../mempool" }
chainstate = { path = "../../chainstate" }
async-trait.workspace = true
bb8-postgres = "0.8"
clap = { workspace = true, features = ["derive"] }
futures = { workspace = true, default-features = false }
itertools.workspace = true
parity-scale-codec.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["full"] }
tokio-postgres = "0.7"
[dev-dependencies]
chainstate-test-framework = { path = "../../chainstate/test-framework" }
test-utils = { path = "../../test-utils" }
rstest.workspace = true