Skip to content

Commit 57f8991

Browse files
committed
Update dependencies
1 parent ebec431 commit 57f8991

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- BREAKING: Update to `reqwest` 0.13
13+
1014
## [0.4.1] - 2025-02-21
1115

1216
### Fixed

Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,20 @@ categories = ["api-bindings"]
1010
keywords = ["mediathek", "mediathekview", "mediathekviewweb", "ard", "zdf"]
1111

1212
[features]
13-
default = ["native-tls"]
13+
default = ["default-tls"]
14+
# Enable the `default-tls` feature on reqwest
15+
default-tls = ["reqwest/default-tls"]
1416
# Enable the `native-tls` feature on reqwest
1517
native-tls = ["reqwest/native-tls"]
1618
# Enable the `rustls-tls` feature on reqwest
17-
rustls-tls = ["reqwest/rustls-tls"]
19+
rustls-tls = ["reqwest/rustls"]
1820

1921
[dependencies]
20-
reqwest = { version = "0.12.2", default-features = false, features = ["json"] }
21-
serde = { version = "1.0.197", features = ["derive"] }
22+
reqwest = { version = "0.13.2", default-features = false, features = ["json"] }
23+
serde = { version = "1.0.228", features = ["derive"] }
2224

2325
[dev-dependencies]
24-
tokio = { version = "1.36.0", features = ["macros", "rt"] }
26+
tokio = { version = "1.49.0", features = ["macros", "rt"] }
2527

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

0 commit comments

Comments
 (0)