geocoding
geocoding copied to clipboard
Remove reqwest default tls feature
- [x] I agree to follow the project's code of conduct.
- [x] I added an entry to
CHANGES.mdif knowledge of this change could be valuable to users.
r? @urschrei
This will need a rebase when #57 merges, right?
The chrono work was just merged in https://github.com/georust/geocoding/pull/60 so this will at least need a rebase.
But also... what is this PR doing? Is it disabling TLS? Why would we want that?
Oh, I think I understand.
We want people to be able to choose their tls backend, which are already exposed by geocoding features:
[features]
default = ["reqwest/default"] # this builds default-tls
rustls-tls = ["reqwest/rustls-tls"] # this builds rust-tls
But we were erroneously (redundantly) declaring that reqwest always builds default-tls, so there was no way to use only rust-tls without this PR. Is that right?