-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
49 lines (45 loc) · 1.22 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
[workspace]
resolver = "2"
members = [
"src/genesis-from-db",
"src/http-proxy",
"src/idstore-export",
"src/kvstore",
"src/ledger",
"src/ledger-db",
"src/many",
"src/many-abci",
"src/many-cli-helpers",
"src/many-client",
"src/many-client-macros",
"src/many-compute",
"src/many-error",
"src/many-identity",
"src/many-identity-dsa",
"src/many-identity-hsm",
"src/many-identity-webauthn",
"src/many-kvstore",
"src/many-ledger",
"src/many-ledger/test-macros",
"src/many-ledger/test-utils",
"src/many-macros",
"src/many-migration",
"src/many-mock",
"src/many-modules",
"src/many-protocol",
"src/many-server",
"src/many-server-cache",
"src/many-types",
"src/many-web",
"src/web",
]
[profile.release]
strip = true # Strip debug info from release build
lto = true # Perform "fat" LTO
codegen-units = 1 # Improve the performance of the generated code at the cost of compile time
incremental = false
[profile.dev]
incremental = false
[patch.crates-io]
# Workaround for https://github.com/bazelbuild/rules_rust/issues/1966
gherkin = { git = "https://github.com/fmorency/gherkin.git", rev = "b378f966281a79b501d59a1bfc2dd7519ad2ac98" }