|
|
|
|
|
by weinzierl
2078 days ago
|
|
Not depependin on OpenSSL is kind of the point of the original post if I understand it correctly. Also I find the dependency on OpenSSL one major pain in my Rust projects. When you want to build a statically linked binary you need to supply a statically built OpenSSL and if your distro doesn't come with one (like Ubuntu) you are on your own. Yes, there is a Docker container that comes with all the prerequisites but I think that's a bit heavy for my purposes. I wish there was a single switch in Cargo.toml and every dependency would automagically use rustls. |
|
I think any dependency adds a level of burden, but some things are better delegated to library. I think crypto is a good case, btw I think OpenSSL is not the only one lib for TLS with curl.