Skip to content

Commit f6fee21

Browse files
authored
Merge pull request #140 from Adjective-Object/main
update reqwest to 0.13.1
2 parents 21f2366 + 59825cf commit f6fee21

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

http-cache-reqwest/Cargo.toml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
name = "http-cache-reqwest"
33
version = "1.0.0-alpha.2"
44
description = "http-cache middleware implementation for reqwest"
5-
authors = ["Christian Haynes <06chaynes@gmail.com>", "Kat Marchán <kzm@zkat.tech>"]
5+
authors = [
6+
"Christian Haynes <06chaynes@gmail.com>",
7+
"Kat Marchán <kzm@zkat.tech>",
8+
]
69
repository = "https://github.com/06chaynes/http-cache"
710
homepage = "https://http-cache.rs"
811
license = "MIT OR Apache-2.0"
912
readme = "README.md"
1013
keywords = ["cache", "http", "middleware", "reqwest"]
11-
categories = [
12-
"caching",
13-
"web-programming::http-client"
14-
]
14+
categories = ["caching", "web-programming::http-client"]
1515
edition = "2021"
1616
rust-version = "1.83.0"
1717

@@ -23,8 +23,10 @@ http = "1.2.0"
2323
http-body = "1.0.1"
2424
http-body-util = "0.1.2"
2525
http-cache-semantics = "2.1.0"
26-
reqwest = { version = "0.12.12", default-features = false }
27-
reqwest-middleware = "0.4.0"
26+
reqwest = { version = "0.13.1", default-features = false, features = [
27+
"stream",
28+
] }
29+
reqwest-middleware = "0.5.0"
2830
url = { version = "2.5.4", features = ["serde"] }
2931

3032
# Optional dependencies for streaming feature

0 commit comments

Comments
 (0)