forked from tari-project/tari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 1.09 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
[workspace]
members = [
"base_layer/core",
"base_layer/common_types",
"base_layer/key_manager",
"base_layer/mmr",
"base_layer/p2p",
"base_layer/service_framework",
"base_layer/wallet",
"base_layer/wallet_ffi",
"base_layer/tari_mining_helper_ffi",
"comms/core",
"comms/dht",
"comms/rpc_macros",
"common_sqlite",
"infrastructure/libtor",
"infrastructure/metrics",
"infrastructure/shutdown",
"infrastructure/storage",
"infrastructure/tari_script",
"infrastructure/test_utils",
"buildtools/deps_only",
"applications/tari_base_node",
"applications/tari_console_wallet",
"applications/tari_app_utilities",
"applications/tari_merge_mining_proxy",
"applications/tari_miner",
]
#
# Shutdown when panicking so we can see the error, specifically for the wallet
[profile.release]
panic = 'abort'
[patch.crates-io]
# Temporarily lock pgp to commit (master branch at time of writing) because the currently release crate locks zeroize to =1.3
liblmdb-sys = { git = "https://github.com/tari-project/lmdb-rs", tag = "0.7.6-tari.1" }