Generate distros.rs on build

This commit is contained in:
Teoh Han Hui 2024-06-29 07:17:07 +08:00
parent 7c874a8e9a
commit 11601933f9
No known key found for this signature in database
GPG key ID: D43E2BABAF97DCAE
6 changed files with 254 additions and 0 deletions

View file

@ -20,6 +20,11 @@ strum = { workspace = true, features = ["derive", "std"] }
tracing = { workspace = true, features = ["attributes", "std"] }
tracing-subscriber = { workspace = true, features = ["ansi", "fmt", "smallvec", "std", "tracing-log"] }
[build-dependencies]
indexmap = { workspace = true, features = ["std"] }
regex = { workspace = true, features = ["perf", "std", "unicode"] }
unicode-normalization = { workspace = true, features = ["std"] }
[features]
default = ["autocomplete", "color"]
autocomplete = ["bpaf/autocomplete"]