Skip to content

Commit ee17df9

Browse files
chore(identity): don't inherit rust-version from workspace
Another data point in favor of #4742 just popped up. With `libp2p-identity` being part of the workspace, we accidentally published a patch release that bumps the MSRV which is something we normally consider a breaking change. This PR freezes the MSRV of `libp2p-identity` to avoid this problem in the future. Long-term, we should do #4742 to avoid these kind of mistakes instead of special-casing crates within the repository. Pull-Request: #4866.
1 parent c796200 commit ee17df9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

identity/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-identity"
33
version = "0.2.8"
44
edition = "2021"
55
description = "Data structures and algorithms for identifying peers in libp2p."
6-
rust-version = { workspace = true }
6+
rust-version = "1.73.0" # MUST NOT inherit from workspace because we don't want to publish breaking changes to `libp2p-identity`.
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
99
keywords = ["peer-to-peer", "libp2p", "networking", "cryptography"]

0 commit comments

Comments
 (0)