Skip to content

Commit

Permalink
Update dependencies (#162)
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
westy92 authored May 5, 2024
1 parent e5da213 commit 48fd788
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rss"
version = "2.0.7"
version = "2.0.8"
authors = ["James Hurst <jh.jameshurst@gmail.com>", "Corey Farwell <coreyf@rwell.org>", "Chris Palmer <pennstate5013@gmail.com>"]
description = "Library for serializing the RSS web content syndication format"
repository = "https://github.com/rust-syndication/rss"
Expand All @@ -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"
Expand Down

0 comments on commit 48fd788

Please sign in to comment.