From 1dd1500f7f59a7e97d4bf0023aba5294cb9fea6a Mon Sep 17 00:00:00 2001 From: Jakob Schikowski Date: Sat, 13 Jul 2024 13:56:22 +0200 Subject: [PATCH] chore: Add `publish = false` to helper crates --- integration-test/Cargo.toml | 1 + proxy/Cargo.toml | 1 + tag-generator/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/integration-test/Cargo.toml b/integration-test/Cargo.toml index 8cbf87d7..a6284a5e 100644 --- a/integration-test/Cargo.toml +++ b/integration-test/Cargo.toml @@ -3,6 +3,7 @@ name = "integration-test" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" +publish = false [dependencies] bstr = { version = "1.9.1", default-features = false } diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index 7b44c824..cc9a963d 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -3,6 +3,7 @@ name = "proxy" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" +publish = false [dependencies] anyhow = "1.0.86" diff --git a/tag-generator/Cargo.toml b/tag-generator/Cargo.toml index 1e653f02..09707fc6 100644 --- a/tag-generator/Cargo.toml +++ b/tag-generator/Cargo.toml @@ -3,6 +3,7 @@ name = "tag-generator" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" +publish = false [dependencies] imap-types = { version = "2.0.0-alpha.2", features = ["unvalidated"] }