From 6813a9ed4316b1dd919d0d39ae996cbafc8d711e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Tue, 4 Mar 2025 11:42:57 +0100 Subject: [PATCH] Generate cargo-hakari deps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcel Müller --- Cargo.lock | 10 ++++++++++ Cargo.toml | 2 ++ hakari/Cargo.toml | 18 ++++++++++++++++++ 3 files changed, 30 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index f787eb1..42d775f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index 9613345..0b79f92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,5 @@ [workspace] members = [ "hakari" , "lints/*" ] + +resolver = "2" diff --git a/hakari/Cargo.toml b/hakari/Cargo.toml index 8078f36..8fe64f3 100644 --- a/hakari/Cargo.toml +++ b/hakari/Cargo.toml @@ -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