Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
westy92 authored and andy128k committed May 5, 2024
1 parent 30530be commit cd57b3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.12.3 - Unreleased

- Bump MSRV (Minimum Supported Rust Version) from 1.56.0 to 1.57.0 [`#80`](https://github.com/rust-syndication/atom/pull/80)
- Update `quick-xml` and `derive_builder` dependencies. [`#81`](https://github.com/rust-syndication/atom/pull/81)

## 0.12.2 - 2023-07-26

Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atom_syndication"
version = "0.12.2"
version = "0.12.3"
authors = ["James Hurst <jh.jameshurst@gmail.com>"]
edition = "2021"
description = "Library for serializing the Atom web content syndication format"
Expand All @@ -13,12 +13,12 @@ categories = ["parser-implementations"]
include = ["src/*", "Cargo.toml", "LICENSE-MIT", "LICENSE-APACHE", "README.md"]

[dependencies]
quick-xml = { version = "0.30", features = ["encoding"] }
derive_builder = { version = "0.12", optional = true }
diligent-date-parser = "0.1.3"
quick-xml = { version = "0.31", features = ["encoding"] }
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
derive_builder = { version = "0.20", optional = true }
never = { version = "0.1", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
diligent-date-parser = "0.1.3"

[features]
default = ["builders"]
Expand Down

0 comments on commit cd57b3c

Please sign in to comment.