mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 13:38:43 +00:00

`leon_macros::template!` can parse template at compile-time. It accepts a utf-8 string literal and uses `leon` internally to parse it, then generate code that evaluates to `Template<'static>`. - Exclude fuzz from crate leon when publishing - Impl fn-like proc-macro `leon_macros::template!` - Add dep `leon-macros` to binstalk - Use `leon_macros::template!` in `binstalk::fetchers::gh_crate_meta::hosting` - Add doc for `leon-macros` in `leon` - Improve `std::fmt::Display` impl for `leon::ParseError` - Fixed broken infra link in leon Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
37 lines
712 B
TOML
37 lines
712 B
TOML
[workspace]
|
|
members = [
|
|
"crates/bin",
|
|
"crates/binstalk",
|
|
"crates/binstalk-manifests",
|
|
"crates/binstalk-types",
|
|
"crates/binstalk-downloader",
|
|
"crates/detect-wasi",
|
|
"crates/fs-lock",
|
|
"crates/normalize-path",
|
|
"crates/detect-targets",
|
|
"crates/leon",
|
|
"crates/leon-macros",
|
|
]
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = "symbols"
|
|
|
|
[profile.dev.build-override]
|
|
opt-level = 0
|
|
codegen-units = 1024
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
incremental = false
|
|
|
|
[profile.release.build-override]
|
|
opt-level = 0
|
|
codegen-units = 1024
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
incremental = false
|