Files
daqbuffer/Cargo.toml
2023-09-27 14:07:48 +02:00

27 lines
526 B
TOML

[workspace]
members = ["crates/*"]
resolver = "2"
[profile.release]
opt-level = 2
debug = 0
overflow-checks = false
debug-assertions = false
lto = "thin"
codegen-units = 128
incremental = true
[profile.release2]
inherits = "release"
opt-level = 1
debug = 2
overflow-checks = false
debug-assertions = false
lto = "off"
codegen-units = 32
incremental = true
[patch.crates-io]
#tokio = { git = "https://github.com/dominikwerder/tokio", rev = "995221d8" }
thiserror = { git = "https://github.com/dominikwerder/thiserror.git" }