21 lines
342 B
TOML
21 lines
342 B
TOML
[workspace]
|
|
members = ["rust"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
authors = []
|
|
edition = "2021"
|
|
license-file = "LICENSE.md"
|
|
rust-version = "1.64.0"
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
opt-level = 3
|
|
strip = "debuginfo"
|
|
|
|
[workspace.dependencies]
|
|
# crate = { version = "^0", default-features = false }
|