Releases: oxigraph/oxhttp
Releases · oxigraph/oxhttp
v0.3.1
v0.3.0
- Uses the
http
crate structs to represent the HTTP model (Request
,Response
,StatusCode
...) instead of the ones
defined byoxhttp
. Only theBody
struct is implemented byoxhttp
. - The
rustls-*-native
features now rely on therustls-platform-verifier
crate to support certificate revocation.
The now redundantrustls-*-platform-verifier
features have been removed.
v0.2.7
v0.2.6
v0.2.5
v0.2.4
v0.2.3
v0.2.2
v0.2.1
v0.2.0
- When the
flate2
crate is installed, the HTTP client and server are able to decode bodies withContent-Encoding
set togzip
anddeflate
(no encoding yet). client
andserver
features to enable the HTTP client and server. They are both enabled by default.Server::with_max_num_threads
allows to set an upper bound to the number of threads running at the same time.- Removes Rayon-based thread pool.
- The
rustls
feature has been split intorustls-ring-native
,rustls-ring-webpki
,rustls-aws-lc-native
andrustls-aws-lc-webpki
to either trust the platform certificates or the ones from the Common CA Database and choose a cryptographic library. - All the
set_
methods onClient
andServer
have been renamed towith_
and now takes and returns the mutated objects by value (builder pattern).