Generate cargo-hakari deps
Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
parent
ac995ea522
commit
6813a9ed43
3 changed files with 30 additions and 0 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
|
@ -513,6 +513,16 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "hakari"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"aho-corasick",
|
||||
"dylint_internal",
|
||||
"log",
|
||||
"regex-automata",
|
||||
"regex-syntax",
|
||||
"serde",
|
||||
"smallvec",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hashbrown"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
[workspace]
|
||||
|
||||
members = [ "hakari" , "lints/*" ]
|
||||
|
||||
resolver = "2"
|
||||
|
|
|
|||
|
|
@ -14,5 +14,23 @@ publish = false
|
|||
# are managed by hakari.
|
||||
|
||||
### BEGIN HAKARI SECTION
|
||||
[dependencies]
|
||||
aho-corasick = { version = "1" }
|
||||
dylint_internal = { version = "4", default-features = false, features = ["config", "git", "packaging", "rustup", "sed"] }
|
||||
log = { version = "0.4", default-features = false, features = ["std"] }
|
||||
regex-automata = { version = "0.4", default-features = false, features = ["dfa-onepass", "hybrid", "meta", "nfa", "perf", "unicode"] }
|
||||
regex-syntax = { version = "0.8" }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
smallvec = { version = "1", default-features = false, features = ["const_generics", "union"] }
|
||||
|
||||
[build-dependencies]
|
||||
aho-corasick = { version = "1" }
|
||||
dylint_internal = { version = "4", default-features = false, features = ["config", "git", "packaging", "rustup", "sed"] }
|
||||
log = { version = "0.4", default-features = false, features = ["std"] }
|
||||
regex-automata = { version = "0.4", default-features = false, features = ["dfa-onepass", "hybrid", "meta", "nfa", "perf", "unicode"] }
|
||||
regex-syntax = { version = "0.8" }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
smallvec = { version = "1", default-features = false, features = ["const_generics", "union"] }
|
||||
syn = { version = "2", features = ["extra-traits", "fold", "visit"] }
|
||||
|
||||
### END HAKARI SECTION
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue