Skip to content

Commit

Permalink
Fix: reintroduced wrongly reverted #87 (#100)
Browse files Browse the repository at this point in the history
* chore: update changelog for reverted #87

* Disable chrono default features

This removes outdated time crate from dependency tree

Co-authored-by: silverpill <[email protected]>
  • Loading branch information
h4sh3d and silverpill authored Dec 13, 2022
1 parent 5c6cd86 commit 395c8d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 395c8d3

Please sign in to comment.