Skip to content

Commit

Permalink
Don't use workspace-wide crate versions (#184)
Browse files Browse the repository at this point in the history
Given that rustls-cert-gen already specifies its version number (such
that only one crate actually uses the workspace `version`) and that
version numbers are generally pretty closely tied to specific crate's
API, IMO it's better to avoid having a workspace-level crate version.
  • Loading branch information
djc authored Oct 30, 2023
1 parent 58febf6 commit 86e793c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ pem = { version = "3.0.2" }
license = "MIT OR Apache-2.0"
edition = "2021"
readme = "README.md"
version = "0.11.3"
description = "Rust X.509 certificate generator"
repository = "https://github.com/rustls/rcgen"
keywords = ["mkcert", "ca", "certificate"]
Expand Down
2 changes: 1 addition & 1 deletion rcgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rcgen"
version = "0.11.3"
documentation = "https://docs.rs/rcgen"
version.workspace = true
description.workspace = true
repository.workspace = true
readme.workspace = true
Expand Down

0 comments on commit 86e793c

Please sign in to comment.