forked from CodeChain-io/codechain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (73 loc) · 1.74 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
[package]
name = "codechain"
version = "0.0.0"
license = "AGPL-3.0"
authors = ["CodeChain Team <[email protected]>"]
exclude = [
"db/*",
"docker/*",
"docs/*",
"keys/*",
"scripts/*",
"spec/*",
"test/*",
]
edition = "2018"
[dependencies]
app_dirs = "^1.2.1"
clap = { version = "2", features = ["yaml"] }
codechain-core = { path = "core" }
codechain-crypto = { git = "https://github.com/CodeChain-io/rust-codechain-crypto.git", version = "0.1" }
codechain-discovery = { path = "discovery" }
codechain-logger = { path = "util/logger" }
codechain-key = { path = "key" }
codechain-keystore = { path = "keystore" }
codechain-merkle = { path = "util/merkle" }
codechain-network = { path = "network" }
codechain-rpc = { path = "rpc" }
codechain-state = { path = "state" }
codechain-sync = { path = "sync" }
codechain-timer = { path = "util/timer" }
codechain-types = { path = "types" }
codechain-vm = { path = "vm" }
codechain-stratum = { path = "stratum" }
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
fdlimit = "0.1"
finally-block = "0.1"
futures = "0.1"
kvdb = "0.1"
kvdb-rocksdb = "0.1"
log = "0.4.6"
env_logger = "0.5.3"
never-type = "0.1.0"
panic_hook = { path = "util/panic_hook" }
parking_lot = "0.6.0"
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
rpassword = "2.0.0"
rustc-serialize = "0.3"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tokio-core = "0.1.17"
toml = "0.4"
cidr = "0.0.4"
[build-dependencies]
vergen = "2"
[[bin]]
path = "codechain/main.rs"
name = "codechain"
[profile.release]
lto = true
[workspace]
members = [
"core",
"discovery",
"json",
"key",
"keystore",
"network",
"rpc",
"sync",
"types",
"vm",
]