Skip to content

Commit

Permalink
Disable clock feature of chrono to mitigate RUSTSEC-2020-0159
Browse files Browse the repository at this point in the history
  • Loading branch information
andy128k committed Oct 20, 2021
1 parent 189f1a5 commit 40460c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 0.11.0 - Unreleased

- Disable clock feature of chrono to mitigate RUSTSEC-2020-0159 [`#57`](https://github.com/rust-syndication/atom/pull/57)
- Escape Content's value unless it contains xhtml [`#52`](https://github.com/rust-syndication/atom/pull/52)
- Preserve entities and open tags (e.g `&amp;`, `<br/>`) in xhtml content [`#53`](https://github.com/rust-syndication/atom/pull/53)
- Add support of xml:base and xml:land in a Feed [`#55`](https://github.com/rust-syndication/atom/pull/55)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ quick-xml = { version = "0.22", features = ["encoding"] }
derive_builder = { version = "0.10.2", optional = true }
never = { version = "0.1", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
chrono = "0.4"
diligent-date-parser = "0.1"
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
diligent-date-parser = "0.1.3"

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

0 comments on commit 40460c5

Please sign in to comment.