forked from nervosnetwork/ckb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (65 loc) · 1.34 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
[package]
name = "ckb"
version = "0.20.0-pre"
license = "MIT"
authors = ["Nervos Core Dev <[email protected]>"]
edition = "2018"
build = "build.rs"
[build-dependencies]
ckb-build-info = { path = "util/build-info" }
[dependencies]
ckb-build-info = { path = "util/build-info" }
ckb-bin = { path = "ckb-bin" }
[dev-dependencies]
[workspace]
members = [
# Members are ordered by dependencies. Crates at top has fewer dependencies.
"util/build-info",
"util/logger",
"util",
"util/hash",
"util/crypto",
"util/rational",
"util/merkle-tree",
"util/multisig",
"util/stop-handler",
"util/occupied-capacity",
"util/types",
"util/jsonrpc-types",
"script/data-loader",
"db",
"resource",
"pow",
"notify",
"util/reward-calculator",
"util/proposal-table",
"ckb-bin",
"traits",
"network",
"util/network-alert",
"util/dao/utils",
"spec",
"store",
"script",
"traits",
"util/test-chain-utils",
"util/dao",
"util/reward-calculator",
"verification",
"shared",
"shared/tx-pool-executor",
"chain",
"indexer",
"sync",
"miner",
"rpc",
"util/instrument",
"util/app-config",
"ckb-bin",
"benches",
]
[profile.release]
debug = true
overflow-checks = true
[target.'cfg(unix)'.dependencies]
jemallocator = { version = "0.3.0" }