From 21c85b196924f33ab0a3360574bbdd8ac7e3e8e9 Mon Sep 17 00:00:00 2001 From: Bojan Serafimov Date: Thu, 12 Jan 2023 19:47:33 -0500 Subject: [PATCH] cargo hakari generate --- Cargo.lock | 1 + workspace_hack/Cargo.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 45f3486e70..39855d010e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4538,6 +4538,7 @@ dependencies = [ "futures-util", "hashbrown", "indexmap", + "itertools", "libc", "log", "memchr", diff --git a/workspace_hack/Cargo.toml b/workspace_hack/Cargo.toml index 3aff839b81..405ac47305 100644 --- a/workspace_hack/Cargo.toml +++ b/workspace_hack/Cargo.toml @@ -25,6 +25,7 @@ futures-task = { version = "0.3", default-features = false, features = ["alloc", futures-util = { version = "0.3", features = ["alloc", "async-await", "async-await-macro", "channel", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std"] } hashbrown = { version = "0.12", features = ["ahash", "inline-more", "raw"] } indexmap = { version = "1", default-features = false, features = ["std"] } +itertools = { version = "0.10", features = ["use_alloc", "use_std"] } libc = { version = "0.2", features = ["extra_traits", "std"] } log = { version = "0.4", default-features = false, features = ["serde", "std"] } memchr = { version = "2", features = ["std"] } @@ -53,6 +54,7 @@ bytes = { version = "1", features = ["serde", "std"] } either = { version = "1", features = ["use_std"] } hashbrown = { version = "0.12", features = ["ahash", "inline-more", "raw"] } indexmap = { version = "1", default-features = false, features = ["std"] } +itertools = { version = "0.10", features = ["use_alloc", "use_std"] } libc = { version = "0.2", features = ["extra_traits", "std"] } log = { version = "0.4", default-features = false, features = ["serde", "std"] } memchr = { version = "2", features = ["std"] }