Remove uv-pep440 cdylib (#10058)

This commit is contained in:
konsti 2024-12-20 16:38:13 +01:00 committed by GitHub
parent 6af14bddca
commit cf14a62de7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 6 deletions

View File

@ -11,11 +11,6 @@ documentation = { workspace = true }
repository = { workspace = true } repository = { workspace = true }
authors = { workspace = true } authors = { workspace = true }
[lib]
name = "uv_pep440"
crate-type = ["rlib", "cdylib"]
doctest = false
[lints] [lints]
workspace = true workspace = true

View File

@ -256,7 +256,7 @@ impl std::fmt::Display for OperatorParseError {
/// ///
/// ```rust /// ```rust
/// use std::str::FromStr; /// use std::str::FromStr;
/// use pep440_rs::Version; /// use uv_pep440::Version;
/// ///
/// let version = Version::from_str("1.19").unwrap(); /// let version = Version::from_str("1.19").unwrap();
/// ``` /// ```