Skip to content

Commit

Permalink
Releases v0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Tpt committed Dec 23, 2024
1 parent 0a9dda8 commit 637ed97
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.2.7] - 2024-12-23

### Changed

- Increases read and write buffer sizes to 16kB.
- Bump `rustls-platform-verifier` to v0.5.

## [0.2.6] - 2024-12-09

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "oxhttp"
version = "0.2.6"
version = "0.2.7"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/oxhttp"
keywords = ["HTTP"]
repository = "https://github.com/oxigraph/oxhttp"
description = """
Very simple implementation of HTTP 1.1 (both client and server)
Simple implementation of HTTP 1.1 (both client and server)
"""
edition = "2021"
rust-version = "1.74"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ To enable it you need to enable one of the following features:
* `rustls-ring-native` to use [Rustls](https://github.com/rustls/rustls) with
the [Ring](https://github.com/briansmith/ring) cryptographic library and the host certificates.
* `rustls-aws-lc-platform-verifier` to use [Rustls](https://github.com/rustls/rustls) with
the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs/ring) and the host verifier or platform certificates.
the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs) and the host verifier or platform certificates.
* `rustls-aws-lc-webpki` to use [Rustls](https://github.com/rustls/rustls) with
the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs/ring) and
the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs) and
the [Common CA Database](https://www.ccadb.org/).
* `rustls-aws-lc-native` to use [Rustls](https://github.com/rustls/rustls) with
the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs/ring) and the host certificates.
the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs) and the host certificates.

Example:

Expand Down
4 changes: 2 additions & 2 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ use webpki_roots::TLS_SERVER_ROOTS;
/// * `rustls-ring-native` to use [Rustls](https://github.com/rustls/rustls) with
/// the [Ring](https://github.com/briansmith/ring) cryptographic library and the host certificates.
/// * `rustls-aws-lc-webpki` to use [Rustls](https://github.com/rustls/rustls) with
/// the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs/ring) and
/// the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs) and
/// the [Common CA Database](https://www.ccadb.org/).
/// * `rustls-aws-lc-native` to use [Rustls](https://github.com/rustls/rustls) with
/// the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs/ring) and the host certificates.
/// the [AWS Libcrypto for Rust](https://github.com/aws/aws-lc-rs) and the host certificates.
///
/// If the `flate2` feature is enabled, the client will automatically decode `gzip` and `deflate` content-encodings.
///
Expand Down

0 comments on commit 637ed97

Please sign in to comment.