forked from holochain/holochain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (59 loc) · 2.5 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
[workspace]
members = [
"crates/ffs",
"crates/fixt",
"crates/fixt/test",
"crates/hdk",
"crates/hdk_derive",
"crates/holo_hash",
"crates/mr_bundle",
"crates/hc",
"crates/hc_bundle",
"crates/hc_sandbox",
"crates/holochain",
"crates/holochain_cascade",
"crates/holochain_conductor_api",
"crates/holochain_lmdb",
"crates/holochain_p2p",
"crates/holochain_keystore",
"crates/holochain_state",
"crates/holochain_types",
"crates/holochain_websocket",
"crates/holochain_zome_types",
"crates/kitsune_p2p/kitsune_p2p",
"crates/kitsune_p2p/transport_quic",
"crates/kitsune_p2p/types",
"crates/kitsune_p2p/proxy",
"crates/kitsune_p2p/mdns",
"crates/test_utils/wasm",
"crates/test_utils/wasm_common",
]
exclude = [
"crates/diagnostics"
]
# These are the default params for RELEASE target
# Setting these for all dependencies... we'll only debug our own code
[profile.dev.package."*"]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
incremental = false
codegen-units = 16
[patch.crates-io]
rkv = { git = "https://github.com/holochain/rkv.git", branch = "master" }
lmdb-rkv = { git = "https://github.com/holochain/lmdb-rs.git" }
# holochain_wasmer_common = { git = "https://github.com/holochain/holochain-wasmer.git", branch = "bump-serde" }
# holochain_wasmer_guest = { git = "https://github.com/holochain/holochain-wasmer.git", branch = "bump-serde" }
# holochain_wasmer_host = { git = "https://github.com/holochain/holochain-wasmer.git", branch = "bump-serde" }
# holochain_serialized_bytes = { git = "https://github.com/holochain/holochain-serialization.git", branch = "bump-serde" }
# holochain_serialized_bytes_derive = { git = "https://github.com/holochain/holochain-serialization.git", branch = "bump-serde" }
# observability = { git = "https://github.com/freesig/observability.git", branch = "main" }
# ghost_actor = { path = "../ghost_actor/crates/ghost_actor" }
# ghost_actor = { git = "https://github.com/holochain/ghost_actor.git", branch = "add_observability" }
# lair_keystore_api = { git = "https://github.com/holochain/lair.git", branch = "bump_ga" }
# lair_keystore_client = { git = "https://github.com/holochain/lair.git", branch = "bump_ga" }
# lair_keystore_api = { path = "../lair/crates/lair_keystore_api" }
# lair_keystore_client = { path = "../lair/crates/lair_keystore_client" }
# observability = { path = "../../rust/observability" }
tokio_safe_block_on = { git = "https://github.com/neonphog/tokio_safe_block_on.git", branch = "fix_holochain_bug" }