Skip to content

Commit

Permalink
Clarification on native-tls > rustls-tls-aws > rustls-tls
Browse files Browse the repository at this point in the history
  • Loading branch information
slvrtrn committed Sep 12, 2024
1 parent 3e89908 commit 3a77f54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- MSRV is now 1.70 due to changes in `hyper-rustls` (see [v0.27.3](https://github.com/rustls/hyper-rustls/releases/tag/v%2F0.27.3)).
- client: `hyper-rustls` now uses pure Rust `ring` backend by default with an option to use `aws-lc-rs` through `rustls-tls-aws` feature. ([#140])
- client: TLS features priority is now `nativetls` > `aws-rs-lc` > `ring` ([#141]).
- client: TLS features priority is now `native-tls` > `rustls-tls-aws` > `rustls-tls` ([#141]).
### Fixed
- insert: fix a panic on empty insert ([#139]).

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ See [examples](https://github.com/ClickHouse/clickhouse-rs/tree/main/examples).
* `time` — adds `serde::time` to work with [time](https://docs.rs/time) crate.

> **NOTE**:
> When connecting to ClickHouse via an `HTTPS` url, you must enable either the `native-tls` or `rustls-tls` features.
> If both are enabled, the `rustls-tls` feature will take precedence.
> When connecting to ClickHouse via an `HTTPS` url, you must enable either the `native-tls`, `rustls-tls` or `rustls-tls-aws` features.
> If all are enabled, the priority is `native-tls` > `rustls-tls-aws` > `rustls-tls`.
## Data Types
* `(U)Int(8|16|32|64|128)` maps to/from corresponding `(u|i)(8|16|32|64|128)` types or newtypes around them.
Expand Down

0 comments on commit 3a77f54

Please sign in to comment.