forked from dashpay/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (46 loc) · 1.24 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
[package]
name = "strategy-tests"
version = "1.1.0-dev.1"
authors = [
"Samuel Westrich <[email protected]>",
"Ivan Shumkov <[email protected]>",
"Paul DeLucia <[email protected]>",
]
edition = "2021"
rust-version = "1.76"
license = "MIT"
[dependencies]
tracing = "0.1.4"
futures = "0.3"
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
drive = { path = "../rs-drive", default-features = false, features = [
"verify",
] }
rand = "0.8.5"
hex = "0.4.3"
serde_json = "1.0"
dpp = { path = "../rs-dpp", features = [
"abci",
"bls-signatures",
"client",
"random-documents",
"state-transitions",
"state-transition-signing",
"random-identities",
"random-public-keys",
"random-document-types",
"fixtures-and-mocks",
"identity-value-conversion",
"data-contract-json-conversion",
"data-contract-cbor-conversion",
] }
simple-signer = { path = "../simple-signer" }
platform-version = { path = "../rs-platform-version" }
platform-serialization = { path = "../rs-platform-serialization" }
platform-serialization-derive = { path = "../rs-platform-serialization-derive" }
[dev-dependencies]
platform-version = { path = "../rs-platform-version", features = [
"mock-versions",
] }
# For tests of grovedb verify
rocksdb = { version = "0.22.0" }