From a26a088c69eb9d2a42b4437c944b1dd756536b28 Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Thu, 26 Mar 2026 01:00:19 +0000 Subject: [PATCH] chore: add versions to workspace path dependencies for crates.io --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2d559ce..8f914ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,12 +38,12 @@ redis = { version = "0.27", features = ["tokio-comp", "connection-manager"] } opensearch = "2" # Internal crates -wfe-core = { path = "wfe-core" } -wfe-sqlite = { path = "wfe-sqlite" } -wfe-postgres = { path = "wfe-postgres" } -wfe-opensearch = { path = "wfe-opensearch" } -wfe-valkey = { path = "wfe-valkey" } -wfe-yaml = { path = "wfe-yaml" } +wfe-core = { version = "1.0.0", path = "wfe-core" } +wfe-sqlite = { version = "1.0.0", path = "wfe-sqlite" } +wfe-postgres = { version = "1.0.0", path = "wfe-postgres" } +wfe-opensearch = { version = "1.0.0", path = "wfe-opensearch" } +wfe-valkey = { version = "1.0.0", path = "wfe-valkey" } +wfe-yaml = { version = "1.0.0", path = "wfe-yaml" } # YAML serde_yaml = "0.9"