2022-03-16 05:26:41 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2023-07-24 08:14:49 +00:00
|
|
|
"multiplier",
|
2022-10-06 20:44:16 +00:00
|
|
|
"private-settlement",
|
2022-05-24 11:36:19 +00:00
|
|
|
"semaphore",
|
2022-03-16 05:32:31 +00:00
|
|
|
"rln",
|
2023-05-18 06:03:22 +00:00
|
|
|
"rln-cli",
|
2022-09-20 12:22:46 +00:00
|
|
|
"rln-wasm",
|
2022-09-28 09:33:14 +00:00
|
|
|
"utils",
|
2022-03-16 05:26:41 +00:00
|
|
|
]
|
2023-08-01 12:36:52 +00:00
|
|
|
resolver = "2"
|
2023-02-08 11:38:42 +00:00
|
|
|
|
|
|
|
# Compilation profile for any non-workspace member.
|
|
|
|
# Dependencies are optimized, even in a dev build. This improves dev performance
|
|
|
|
# while having neglible impact on incremental build times.
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
opt-level = 3
|
|
|
|
|
|
|
|
[profile.release.package."rln-wasm"]
|
|
|
|
# Tell `rustc` to optimize for small code size.
|
|
|
|
opt-level = "s"
|
|
|
|
|
|
|
|
[profile.release.package."semaphore"]
|
2023-08-05 05:12:21 +00:00
|
|
|
codegen-units = 1
|