From 46d482a73473f0983b5299d224dc9788eeb4f256 Mon Sep 17 00:00:00 2001 From: Chris Branch Date: Thu, 26 Oct 2023 13:36:49 +0100 Subject: [PATCH] Specify exact versions of dependent crates in the workspace manifest This is needed for cargo release to update to a release candidate version successfully; without it, only the major version is bumped, and cargo prevents you from using a prerelease version if you didn't specifically request it. --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e7836c85..6f1c0205 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,9 +13,9 @@ repository = "https://github.com/cloudflare/boring" edition = "2021" [workspace.dependencies] -boring-sys = { version = "3", path = "./boring-sys" } -boring = { version = "3", path = "./boring" } -tokio-boring = { version = "3", path = "./tokio-boring" } +boring-sys = { version = "3.1.0", path = "./boring-sys" } +boring = { version = "3.1.0", path = "./boring" } +tokio-boring = { version = "3.1.0", path = "./tokio-boring" } bindgen = { version = "0.68.1", default-features = false, features = ["runtime"] } cmake = "0.1.18"