-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (66 loc) · 1.84 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (66 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "dash-primitives"
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 = [
"bitcoin-consensus-encoding/std",
"bitcoin-internals/std",
"bitcoin-primitives/std",
"bitcoin_hashes/std",
"bitcoin-units/std",
"dash-num/std",
"dash-pkc/std",
"dash-script/std",
"dash-types/std",
"hex-conservative/std",
]
serde = [
"dep:serde",
"bitcoin-primitives/serde",
"bitcoin-units/serde",
"dash-num/serde",
"dash-pkc/serde",
"dash-script/serde",
"dash-types/serde",
]
full = ["std", "serde"]
[dependencies]
bitcoin-consensus-encoding = { workspace = true, features = ["alloc"] }
bitcoin-internals = { workspace = true }
bitcoin-primitives = { workspace = true, features = ["alloc"] }
bitcoin_hashes = { workspace = true, features = ["alloc"] }
bitcoin-units = { workspace = true, features = ["alloc"] }
dash-num = { version = "0.1.0-beta", path = "../num", features = ["codec"] }
dash-pkc = { version = "0.1.0-beta", path = "../pkc", default-features = false, features = [
"codec",
] }
dash-pow = { version = "0.0.0", path = "../pow" }
dash-script = { version = "0.0.0", path = "../script" }
dash-types = { version = "0.1.0-beta", path = "../types", default-features = false, features = [
"bitcoin-primitives",
"codec",
] }
cfg-if = "1"
hex-conservative = { workspace = true, features = [
"alloc",
] }
libm = { version = "0.2", default-features = false }
serde = { version = "1", default-features = false, features = [
"alloc",
"derive",
], optional = true }
[dev-dependencies]
dash-dev = { version = "0.0.0", path = "../dev", features = ["full"] }
hex-literal = "0.4"
rstest = "0.25"
serde = { version = "1", features = ["derive"] }
[lints]
workspace = true