elastic / elasticsearch-rs

Official Elasticsearch Rust Client
https://www.elastic.co/guide/en/elasticsearch/client/rust-api/current/index.html
Apache License 2.0
695 stars 70 forks source link

Can we use `rustls` instead of `native-tls` by default? #219

Open rinarakaki opened 1 year ago

rinarakaki commented 1 year ago

Is your feature request related to a problem? Please describe.

reqwest also uses rustls by default. It's better than having an os-specific installation step.

Describe the solution you'd like

Before:

[features]
default = ["native-tls"]

After:

[features]
default = ["rustls-tls"]