matrix-rust-sdk/Cargo.toml

14 lines
424 B
TOML
Raw Normal View History

[workspace]
members = ["benchmarks", "crates/*", "labs/*", "xtask"]
# xtask and labs should only be compiled when invoked explicitly
default-members = ["benchmarks", "crates/*"]
2022-05-17 08:24:28 +00:00
resolver = "2"
[profile.release]
lto = true
[profile.dev.package]
# Optimize quote even in debug mode. Speeds up proc-macros enough to account
# for the extra time of optimizing it for a clean build of matrix-sdk-ffi.
quote = { opt-level = 2 }