elasticsearch-rs icon indicating copy to clipboard operation
elasticsearch-rs copied to clipboard

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

Open rinarakaki opened this issue 1 year ago • 0 comments

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"]

rinarakaki avatar Apr 19 '23 11:04 rinarakaki