-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (49 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (49 loc) · 1.37 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "dash-p2p-core"
version = "0.0.0"
readme = "README.md"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[features]
default = []
std = [
"dash-pkc/std",
"dash-primitives/std",
"dash-script/std",
"dash-types/std",
]
serde = [
"dep:serde",
"dash-num/serde",
"dash-pkc/serde",
"dash-primitives/serde",
"dash-script/serde",
"dash-types/serde",
]
full = ["std", "serde"]
[dependencies]
bitcoin-consensus-encoding = { workspace = true, features = ["alloc"] }
bitcoin-internals = { workspace = true }
cfg-if = "1"
dash-num = { version = "0.1.0-beta", path = "../num", features = ["codec"] }
dash-pkc = { version = "0.1.0-beta", path = "../pkc", features = ["codec"] }
dash-script = { version = "0.0.0", path = "../script" }
dash-params = { version = "0.0.0", path = "../params" }
dash-primitives = { version = "0.0.0", path = "../primitives" }
dash-types = { version = "0.1.0-beta", path = "../types", default-features = false, features = [
"codec",
] }
serde = { version = "1", default-features = false, features = [
"alloc",
"derive",
], optional = true }
[dev-dependencies]
dash-dev = { version = "0.0.0", path = "../dev", features = ["full"] }
hex-conservative = { workspace = true, features = ["std"] }
rstest = "0.25"
[lints]
workspace = true