usdpl-rs/Cargo.toml

26 lines
530 B
TOML
Raw Normal View History

2022-06-08 01:05:04 +01:00
[package]
name = "usdpl-rs"
2022-08-01 17:33:50 +01:00
version = "0.6.0"
2022-06-08 01:05:04 +01:00
authors = ["NGnius (Graham) <ngniusness@gmail.com>"]
edition = "2021"
license = "GPL-3.0-only"
repository = "https://github.com/NGnius/usdpl-rs"
readme = "README.md"
2022-06-08 01:05:04 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"
2022-06-21 01:03:18 +01:00
debug = false
strip = true
lto = true
codegen-units = 4
2022-06-08 01:05:04 +01:00
[workspace]
members = [
"usdpl-core",
"usdpl-front",
"usdpl-back"
]