forked from stacks-network/stacks-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
95 lines (77 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[package]
name = "blockstack-core"
version = "0.0.1"
authors = ["Jude Nelson <[email protected]>", "Aaron Blankstein <[email protected]>"]
license = "GPLv3"
homepage = "https://github.com/blockstack/blockstack-core"
repository = "https://github.com/blockstack/blockstack-core"
description = "Reference implementation of Blockstack Core"
keywords = [ "bitcoin", "crypto", "blockstack", "decentralized", "dapps", "blockchain" ]
readme = "README.md"
[lib]
name = "blockstack_lib"
path = "src/lib.rs"
[[bin]]
name = "blockstack-core"
path = "src/main.rs"
[[bin]]
name = "clarity-cli"
path = "src/clarity_cli.rs"
[[bin]]
name = "blockstack-cli"
path = "src/blockstack_cli.rs"
[[bench]]
name = "marf_bench"
harness = false
[[bench]]
name = "large_contract_bench"
harness = false
[[bench]]
name = "block_limits"
harness = false
[dependencies]
byteorder = "1.1"
tini = "0.2"
rand = "=0.7.2"
serde = "1"
serde_derive = "1"
sha3 = "0.8.2"
ripemd160 = "0.8.0"
regex = "1"
mio = "0.6"
libc = "0.2"
lazy_static = "1.4.0"
url = "2.1.0"
percent-encoding = "2.1.0"
sha2 = "0.8.0"
[dependencies.serde_json]
version = "1.0"
features = ["arbitrary_precision"]
[dependencies.secp256k1]
version = "0.11.5"
features = ["serde"]
[dependencies.rusqlite]
version = "=0.16.0"
features = ["blob", "i128_blob", "bundled", "trace"]
[dependencies.ed25519-dalek]
version = "=1.0.0-pre.3"
features = ["serde"]
[dependencies.curve25519-dalek]
version = "=2.0.0"
features = ["serde"]
[dependencies.time]
version = "0.2.1"
features = ["std"]
[dev-dependencies]
assert-json-diff = "1.0.0"
criterion = "0.3"
[features]
developer-mode = []
default = ["developer-mode"]
[target.'cfg(all(target_arch = "x86_64", not(target_env = "msvc")))'.dependencies]
sha2-asm = "0.5.3"
[workspace]
members = [
".",
"testnet/stacks-node",
"testnet/bitcoin-neon-controller"]