From 6c16c8937915e4bf6826768d3be676776ce3ed91 Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Sun, 5 Apr 2026 12:01:02 +0100 Subject: [PATCH] fix: add version + registry to wfe-server path deps for publishing --- wfe-server/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wfe-server/Cargo.toml b/wfe-server/Cargo.toml index ca11965..c0d63c8 100644 --- a/wfe-server/Cargo.toml +++ b/wfe-server/Cargo.toml @@ -14,9 +14,9 @@ path = "src/main.rs" [dependencies] # Internal wfe-core = { workspace = true, features = ["test-support"] } -wfe = { path = "../wfe" } -wfe-yaml = { path = "../wfe-yaml", features = ["rustlang", "buildkit", "containerd"] } -wfe-server-protos = { path = "../wfe-server-protos" } +wfe = { version = "1.6.1", path = "../wfe", registry = "sunbeam" } +wfe-yaml = { version = "1.6.1", path = "../wfe-yaml", registry = "sunbeam", features = ["rustlang", "buildkit", "containerd"] } +wfe-server-protos = { version = "1.6.1", path = "../wfe-server-protos", registry = "sunbeam" } wfe-sqlite = { workspace = true } wfe-postgres = { workspace = true } wfe-valkey = { workspace = true }