forked from build-trust/ockam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (54 loc) · 2.06 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
[workspace]
resolver = "2"
members = [
"examples/rust/file_transfer",
"examples/rust/get_started",
"examples/rust/ockam_kafka",
"examples/rust/tcp_inlet_and_outlet",
"examples/rust/mitm_node",
"implementations/rust/ockam/ockam",
"implementations/rust/ockam/ockam_abac",
"implementations/rust/ockam/ockam_app",
"implementations/rust/ockam/ockam_api",
"implementations/rust/ockam/ockam_command",
"implementations/rust/ockam/ockam_core",
"implementations/rust/ockam/ockam_executor",
"implementations/rust/ockam/ockam_identity",
"implementations/rust/ockam/ockam_macros",
"implementations/rust/ockam/ockam_multiaddr",
"implementations/rust/ockam/ockam_node",
"implementations/rust/ockam/ockam_transport_ble",
"implementations/rust/ockam/ockam_transport_core",
"implementations/rust/ockam/ockam_transport_tcp",
"implementations/rust/ockam/ockam_transport_udp",
"implementations/rust/ockam/ockam_transport_uds",
"implementations/rust/ockam/ockam_transport_websocket",
"implementations/rust/ockam/ockam_vault",
"implementations/rust/ockam/ockam_vault_aws",
"tools/docs/example_blocks",
"tools/docs/example_test_helper",
]
# Coverage profile for generating code coverage with grcov.
#
# See https://github.com/rust-lang/rust/issues/78011.
#
[profile.coverage]
panic = "abort"
opt-level = 0
overflow-checks = false
incremental = false
codegen-units = 1
inherits = "test"
# compromise: minimal optimization on selected dependencies
# to reduce cli bootstrap time by ~5x
# mostly caused by syntect theme loading
[profile.dev.package.syntect]
opt-level = 2
[profile.dev.package.adler]
opt-level = 1
[patch.crates-io]
# temporary fork for url scheme - https://github.com/build-trust/ockam/issues/5667
tauri = { git = "https://github.com/build-trust/tauri.git", branch = "add-url-scheme" }
tauri-build = { git = "https://github.com/build-trust/tauri.git", branch = "add-url-scheme" }
tauri-utils = { git = "https://github.com/build-trust/tauri.git", branch = "add-url-scheme" }
muda = { git = "https://github.com/build-trust/muda.git", branch = "muda-v0.8.7-patched" }