Re-add dummy serde feature to pep440-rs and pep508-rs (#3501)

This keeps us in sync with the published pep440-rs and pep508-rs crates
for prefix.
This commit is contained in:
konsti 2024-05-10 15:46:29 +02:00 committed by GitHub
parent 76a39c76f5
commit 5f8c3b7e45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -27,3 +27,7 @@ unscanny = { workspace = true }
[dev-dependencies]
indoc = { version = "2.0.4" }
[features]
# Match the API of the published crate, for compatibility.
serde = []

View File

@ -52,3 +52,5 @@ tracing = ["dep:tracing", "pep440_rs/tracing"]
# be supported.
non-pep508-extensions = []
default = []
# Match the API of the published crate, for compatibility.
serde = []