From 2c5b81e872461e867a943da9cc4aff1f1ad90c94 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 3 Jul 2023 13:49:51 -0400 Subject: [PATCH] Mark vestigial crates as "publish=false" These crates were started, but they aren't integrated into Arti (yet?). As such it doesn't make sense to keep publishing updated versions of them every time we tweak our standard lints. --- crates/tor-congestion/Cargo.toml | 3 +++ crates/tor-events/Cargo.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/crates/tor-congestion/Cargo.toml b/crates/tor-congestion/Cargo.toml index 6500f738c..94afe515d 100644 --- a/crates/tor-congestion/Cargo.toml +++ b/crates/tor-congestion/Cargo.toml @@ -11,6 +11,9 @@ keywords = ["tor", "arti", "async"] categories = ["network-programming"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" +# This crate is not yet used in Arti. +publish = false + [dependencies] thiserror = "1" tor-error = { path = "../tor-error", version = "0.5.2" } diff --git a/crates/tor-events/Cargo.toml b/crates/tor-events/Cargo.toml index 52b791066..1f510e5aa 100644 --- a/crates/tor-events/Cargo.toml +++ b/crates/tor-events/Cargo.toml @@ -11,6 +11,9 @@ keywords = ["tor", "arti"] categories = ["asynchronous"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" +# This crate is not (yet?) used anywhere in Arti. +publish = false + [dependencies] async-broadcast = "0.5.0" futures = "0.3.14"