This repository was archived by the owner on Jan 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
43 lines (38 loc) · 1.6 KB
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
[workspace]
resolver = "2"
members = [
"src/http_proxy",
"src/idstore-export",
"src/ledger",
"src/ledger-db",
"src/kvstore",
"src/many-abci",
"src/many-kvstore",
"src/many-ledger",
]
[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."https://github.com/liftedinit/many-rs.git"]
#many = { path = "../many-rs/src/many" }
#many-client = { path = "../many-rs/src/many-client" }
#many-client-macros = { path = "../many-rs/src/many-client-macros" }
#many-error = { path = "../many-rs/src/many-error" }
#many-identity = { path = "../many-rs/src/many-identity" }
#many-identity-dsa = { path = "../many-rs/src/many-identity-dsa" }
#many-identity-hsm = { path = "../many-rs/src/many-identity-hsm" }
#many-identity-webauthn = { path = "../many-rs/src/many-identity-webauthn" }
#many-macros = { path = "../many-rs/src/many-macros" }
#many-migration = { path = "../many-rs/src/many-migration" }
#many-mock = { path = "../many-rs/src/many-mock" }
#many-modules = { path = "../many-rs/src/many-modules" }
#many-protocol = { path = "../many-rs/src/many-protocol" }
#many-server = { path = "../many-rs/src/many-server" }
#many-types = { path = "../many-rs/src/many-types" }
[patch.crates-io]
ciborium = { git = "https://github.com/enarx/ciborium", rev = "2ca375e6b33d1ade5a5798792278b35a807b748e" }
ciborium-io = { git = "https://github.com/enarx/ciborium", rev = "2ca375e6b33d1ade5a5798792278b35a807b748e" }