From a7c2eb1d9bc4dd714c01ab8bdfb923e47c6eb9af Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Fri, 27 Mar 2026 00:35:42 +0000 Subject: [PATCH] chore: add sunbeam registry annotations for crate publishing --- Cargo.toml | 16 ++++++++-------- wfe-buildkit/Cargo.toml | 2 +- wfe-containerd/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8184bc5..73c25a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,14 +38,14 @@ redis = { version = "0.27", features = ["tokio-comp", "connection-manager"] } opensearch = "2" # Internal crates -wfe-core = { version = "1.4.0", path = "wfe-core" } -wfe-sqlite = { version = "1.4.0", path = "wfe-sqlite" } -wfe-postgres = { version = "1.4.0", path = "wfe-postgres" } -wfe-opensearch = { version = "1.4.0", path = "wfe-opensearch" } -wfe-valkey = { version = "1.4.0", path = "wfe-valkey" } -wfe-yaml = { version = "1.4.0", path = "wfe-yaml" } -wfe-buildkit = { version = "1.4.0", path = "wfe-buildkit" } -wfe-containerd = { version = "1.4.0", path = "wfe-containerd" } +wfe-core = { version = "1.4.0", path = "wfe-core", registry = "sunbeam" } +wfe-sqlite = { version = "1.4.0", path = "wfe-sqlite", registry = "sunbeam" } +wfe-postgres = { version = "1.4.0", path = "wfe-postgres", registry = "sunbeam" } +wfe-opensearch = { version = "1.4.0", path = "wfe-opensearch", registry = "sunbeam" } +wfe-valkey = { version = "1.4.0", path = "wfe-valkey", registry = "sunbeam" } +wfe-yaml = { version = "1.4.0", path = "wfe-yaml", registry = "sunbeam" } +wfe-buildkit = { version = "1.4.0", path = "wfe-buildkit", registry = "sunbeam" } +wfe-containerd = { version = "1.4.0", path = "wfe-containerd", registry = "sunbeam" } # YAML serde_yaml = "0.9" diff --git a/wfe-buildkit/Cargo.toml b/wfe-buildkit/Cargo.toml index c101185..b094496 100644 --- a/wfe-buildkit/Cargo.toml +++ b/wfe-buildkit/Cargo.toml @@ -16,7 +16,7 @@ async-trait = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } regex = { workspace = true } -wfe-buildkit-protos = { path = "../wfe-buildkit-protos" } +wfe-buildkit-protos = { version = "1.4.0", path = "../wfe-buildkit-protos", registry = "sunbeam" } tonic = "0.14" tower = { version = "0.4", features = ["util"] } hyper-util = { version = "0.1", features = ["tokio"] } diff --git a/wfe-containerd/Cargo.toml b/wfe-containerd/Cargo.toml index 67c9ab7..054b92e 100644 --- a/wfe-containerd/Cargo.toml +++ b/wfe-containerd/Cargo.toml @@ -9,7 +9,7 @@ description = "containerd container runner executor for WFE" [dependencies] wfe-core = { workspace = true } -wfe-containerd-protos = { path = "../wfe-containerd-protos" } +wfe-containerd-protos = { version = "1.4.0", path = "../wfe-containerd-protos", registry = "sunbeam" } tokio = { workspace = true } serde = { workspace = true } serde_json = { workspace = true }