diff --git a/CHANGELOG.md b/CHANGELOG.md index a891cd2148..32d28ba580 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,5 @@ # 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) diff --git a/Cargo.toml b/Cargo.toml index a3a92685fe..6133620dd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.31", features = ["encoding"] } -derive_builder = { version = "0.20", optional = true } -never = { version = "0.1", optional = true } +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"