diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a4546..3b951ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Removed + +- Disable chrono default features by @silverpill ([#87](https://github.com/monero-rs/monero-rpc-rs/pull/87)) + ## [0.3.1] - 2022-12-12 ### Changed @@ -26,10 +30,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Monero library bumped to version `0.18` ([#83](https://github.com/monero-rs/monero-rpc-rs/pull/83)) - Update fixed-hash requirement from 0.7 to 0.8 ([#85](https://github.com/monero-rs/monero-rpc-rs/pull/85)) -### Removed - -- Disable chrono default features by @silverpill ([#87](https://github.com/monero-rs/monero-rpc-rs/pull/87)) - ## [0.2.0] - 2022-07-29 ### Added diff --git a/Cargo.toml b/Cargo.toml index c5e21fb..8ebfb21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ description = "RPC client for Monero daemon and wallet" [dependencies] anyhow = "1" -chrono = { version = "0.4", features = ["serde"] } +chrono = { version = "0.4", default-features = false, features = ["serde"] } diqwest = { version = "1.1", optional = true } fixed-hash = "0.8" hex = "0.4"