-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
92 lines (88 loc) · 2.01 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
[package]
description = "aion network rust implementation"
name = "aionr"
# NOTE Make sure to update util/version/Cargo.toml as well
version = "1.3.0"
license = "GPL-3.0"
authors = ["aion foundation <[email protected]>"]
[dependencies]
log = "0.3"
rustc-hex = "1.0"
clap = "2"
term_size = "0.3"
textwrap = "0.9"
num_cpus = "1.2"
rpassword = "1.0"
ansi_term = "0.10"
parking_lot = "0.5"
toml = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
fdlimit = "0.1"
tokio = "0.1.13"
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
acore = { path = "core", version = "0.1" }
acore-bytes = { path = "util/bytes" }
acore-io = { path = "util/io" }
logger = { path = "util/logger" }
aion-types = { path = "util/aion-types" }
aion-version = { path = "util/version" }
dir = { path = "util/dir" }
rlp = { path = "util/rlp" }
panic_hook = { path = "util/panic_hook" }
journaldb = { path = "db/journaldb" }
key = { path = "keystore/key" }
keychain = { path = "keystore/keychain" }
aion-rpc = { path = "rpc" }
p2p = { path = "p2p" }
[dev-dependencies]
pretty_assertions = "0.1"
tempdir = "0.3"
regex = "0.2"
[workspace]
members = [
"core",
"db/core",
"db/journaldb",
"json",
"keystore/key/cli",
"keystore/keychain/cli",
"rpc",
"p2p",
"util/aion-types",
"util/avm_abi",
"util/blake2b",
"util/bloom",
"util/bloomchain",
"util/bytes",
"util/crypto",
"util/dir",
"util/equihash",
"util/error",
"util/ethbloom",
"util/io",
"util/logger",
"util/macros",
"util/memory_cache",
"util/panic_hook",
"util/patricia_trie",
"util/plain_hasher",
"util/rlp",
"util/rlp_compress",
"util/rlp_derive",
"util/stats",
"util/table",
"util/trace-time",
"util/trie-standardmap",
"util/triehash",
"util/unexpected",
"util/using_queue",
"util/version",
"util/fixed_point",
"vms"
]
[[bin]]
path = "aion/main.rs"
name = "aion"