mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-16 20:50:25 +00:00
This commit replaced the use of `lazy_static` by `const_format` in `lychee-bin`. Currently `lazy_static` is used to generate static String at runtime. With `const_format` we can instead make constant String at compile time. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
15 lines
285 B
TOML
15 lines
285 B
TOML
[workspace]
|
|
members = [
|
|
"lychee-bin",
|
|
"lychee-lib",
|
|
"examples/*",
|
|
"benches",
|
|
]
|
|
resolver = "2"
|
|
|
|
[patch.crates-io]
|
|
# Switch back to version on crates.io after 0.6.3+ is released
|
|
hubcaps = { git="https://github.com/softprops/hubcaps.git" }
|
|
|
|
[profile.release]
|
|
debug = true
|