Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
d-k-bo committed Mar 25, 2024
1 parent 6e666df commit 7cde3bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- BREAKING: Update `reqwest` to v0.12.x which is based on `hyper`, `http` and `http-body` v1

## [0.2.0] - 2023-10-14

### Changed

- BREAKING: use `i64`for timestamps
- BREAKING: use `i64` for timestamps
- Make timestamp parsing more resilient by accepting both strings and integers
- BREAKING: Deserialize maybe-empty strings as `Option<String>`

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]

[dependencies]
reqwest = { version = "0.11.22", default-features = false, features = ["json"] }
serde = { version = "1.0.188", features = ["derive"] }
reqwest = { version = "0.12.2", default-features = false, features = ["json"] }
serde = { version = "1.0.197", features = ["derive"] }

[dev-dependencies]
tokio = { version = "1.32.0", features = ["macros", "rt"] }
tokio = { version = "1.36.0", features = ["macros", "rt"] }

# see https://stackoverflow.com/a/61417700/14750360
[package.metadata.docs.rs]
Expand Down

0 comments on commit 7cde3bb

Please sign in to comment.