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:
parent
0f74eade4b
commit
46d482a734
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue