Expose some more reqwest features (#160)

pull/158/head^2
Matt Palmer 2024-06-25 19:20:53 +10:00 committed by GitHub
parent 88dbfe67fb
commit 226562735c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Added support for `opentelemetry` version `0.23`. - Added support for `opentelemetry` version `0.23`.
- `http2`, `rustls-tls`, and `charset` features, which simply enable those features in `reqwest`.
## [0.3.1] ## [0.3.1]

View File

@ -13,6 +13,9 @@ readme = "../README.md"
[features] [features]
multipart = ["reqwest/multipart"] multipart = ["reqwest/multipart"]
json = ["reqwest/json"] json = ["reqwest/json"]
charset = ["reqwest/charset"]
http2 = ["reqwest/http2"]
rustls-tls = ["reqwest/rustls-tls"]
[dependencies] [dependencies]
anyhow = "1.0.0" anyhow = "1.0.0"