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.
This commit is contained in:
Chris Branch 2023-10-26 13:36:49 +01:00 committed by Chris Branch
parent 0f74eade4b
commit 46d482a734
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@ repository = "https://github.com/cloudflare/boring"
edition = "2021" edition = "2021"
[workspace.dependencies] [workspace.dependencies]
boring-sys = { version = "3", path = "./boring-sys" } boring-sys = { version = "3.1.0", path = "./boring-sys" }
boring = { version = "3", path = "./boring" } boring = { version = "3.1.0", path = "./boring" }
tokio-boring = { version = "3", path = "./tokio-boring" } tokio-boring = { version = "3.1.0", path = "./tokio-boring" }
bindgen = { version = "0.68.1", default-features = false, features = ["runtime"] } bindgen = { version = "0.68.1", default-features = false, features = ["runtime"] }
cmake = "0.1.18" cmake = "0.1.18"