Releases: oxigraph/oxhttp
Releases · oxigraph/oxhttp
v0.3.1
v0.3.0
- Uses the
httpcrate structs to represent the HTTP model (Request,Response,StatusCode...) instead of the ones
defined byoxhttp. Only theBodystruct is implemented byoxhttp. - The
rustls-*-nativefeatures now rely on therustls-platform-verifiercrate to support certificate revocation.
The now redundantrustls-*-platform-verifierfeatures 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
flate2crate is installed, the HTTP client and server are able to decode bodies withContent-Encodingset togzipanddeflate(no encoding yet). clientandserverfeatures to enable the HTTP client and server. They are both enabled by default.Server::with_max_num_threadsallows to set an upper bound to the number of threads running at the same time.- Removes Rayon-based thread pool.
- The
rustlsfeature has been split intorustls-ring-native,rustls-ring-webpki,rustls-aws-lc-nativeandrustls-aws-lc-webpkito either trust the platform certificates or the ones from the Common CA Database and choose a cryptographic library. - All the
set_methods onClientandServerhave been renamed towith_and now takes and returns the mutated objects by value (builder pattern).