forked from aionnetwork/aionr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
98 lines (88 loc) · 2.1 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
96
97
98
[package]
description = "Aion Blockchain client"
name = "aion"
# NOTE Make sure to update util/version/Cargo.toml as well
version = "0.1.1"
license = "GPL-3.0"
authors = ["Aion Foundation <[email protected]>"]
[dependencies]
log = "0.3"
rustc-hex = "1.0"
docopt = "0.8"
clap = "2"
term_size = "0.3"
textwrap = "0.9"
time = "0.1"
num_cpus = "1.2"
number_prefix = "0.2"
rpassword = "1.0"
semver = "0.6"
ansi_term = "0.10"
parking_lot = "0.5"
regex = "0.2"
isatty = "0.1"
toml = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
futures = "0.1"
fdlimit = "0.1"
ws2_32-sys = "0.2"
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
sync = { path = "sync" }
acore = { path = "core" }
acore-bytes = { path = "util/bytes" }
acore-io = { path = "util/io" }
blake2b = { path = "util/blake2b" }
equihash = { path = "equihash" }
logger = { path = "util/logger" }
acore-stratum = { path = "stratum" }
aion-types = { path = "util/aion-types" }
key = { path = "keystore/key" }
keychain = {path = "keystore/keychain" }
rlp = { path = "util/rlp" }
aion-local-store = { path = "local-store" }
aion-rpc = { path = "rpc" }
aion-version = { path = "util/version" }
path = { path = "util/path" }
dir = { path = "util/dir" }
panic_hook = { path = "util/panic_hook" }
journaldb = { path = "db/journaldb" }
db = { path = "db/core" }
aion-pb-apiserver = { path = "pb_api"}
tokio = "0.1.13"
[build-dependencies]
rustc_version = "0.2"
[dev-dependencies]
pretty_assertions = "0.1"
ipnetwork = "0.12.6"
tempdir = "0.3"
[target.'cfg(windows)'.dependencies]
winapi = "0.2"
[target.'cfg(not(windows))'.dependencies]
daemonize = "0.2"
[features]
json-tests = ["acore/json-tests"]
test-heavy = ["acore/test-heavy"]
slow-blocks = ["acore/slow-blocks"]
final = ["aion-version/final"]
[[bin]]
path = "aion/main.rs"
name = "aion"
[profile.dev]
debug = true
panic = "unwind"
[profile.release]
debug = false
lto = false
panic = "abort"
[workspace]
members = [
"core/types",
"keystore/key/cli",
"keystore/keychain/cli",
"sync",
"util/rlp_compress",
"vms",
]