diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a35449a67..32d28ba580 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## 2.x.x - Unreleased +## 2.0.8 - Unreleased + +- Update quick-xml and derive_builder dependencies. [`#162`](https://github.com/rust-syndication/rss/pull/162) ## 2.0.7 - 2024-01-13 diff --git a/Cargo.toml b/Cargo.toml index 82a72aa673..6133620dd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rss" -version = "2.0.7" +version = "2.0.8" authors = ["James Hurst ", "Corey Farwell ", "Chris Palmer "] description = "Library for serializing the RSS web content syndication format" repository = "https://github.com/rust-syndication/rss" @@ -16,20 +16,20 @@ all-features = false [features] default = ["builders"] +atom = ["atom_syndication"] builders = ["derive_builder", "never", "atom_syndication/builders"] validation = ["chrono", "chrono/std", "url", "mime"] with-serde = ["serde", "atom_syndication/with-serde"] -atom = ["atom_syndication"] [dependencies] -quick-xml = { version = "0.30", features = ["encoding"] } -derive_builder = { version = "0.12", optional = true } -never = { version = "0.1", optional = true } +quick-xml = { version = "0.31", features = ["encoding"] } +atom_syndication = { version = "0.12", optional = true } chrono = { version = "0.4.31", optional = true, default-features = false, features = ["alloc"] } -url = { version = "2.1", optional = true } +derive_builder = { version = "0.20", optional = true } mime = { version = "0.3", optional = true } +never = { version = "0.1", optional = true } serde = { version = "1.0", optional = true, features = ["derive"] } -atom_syndication = { version = "0.12", optional = true } +url = { version = "2.1", optional = true } [dev-dependencies] bencher = "0.1"