-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 879 Bytes
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 879 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
34
35
36
37
38
39
40
[package]
name = "dash-script"
version = "0.0.0"
edition = "2021"
license = "MIT"
[features]
default = []
std = [
"bitcoin_hashes/std",
"base58ck/std",
"bitcoin-consensus-encoding/std",
"dash-types/std",
]
full = ["std", "serde"]
serde = ["dep:serde", "dash-types/serde"]
_internal = []
[dependencies]
base58ck = { version = "0.4", default-features = false, features = ["alloc"] }
bitcoin-consensus-encoding = { version = "0.2", default-features = false, features = [
"alloc",
] }
bitcoin_hashes = { version = "0.20", default-features = false, features = [
"alloc",
] }
dash-types = { version = "0.0.0", path = "../types", default-features = false }
serde = { version = "1", default-features = false, features = [
"derive",
"alloc",
], optional = true }
[dev-dependencies]
hex-literal = "0.4"
[lints]
workspace = true
[package.rust-version]
workspace = true