this post was submitted on 15 Sep 2023
24 points (100.0% liked)

Rust

6005 readers
4 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS
 

If you are using Rust for web or considering doing so, you might be excited to hear that rustls merged a PR to make ring an optional dependency. Soon(-ish) you will be able to choose which cryptography backend to use with rustls, including one written fully in Rust. That would help with making your projects easier to build. Big thank you to rustls team, including Joe Birr-Pixton, @djc, and @cpu!

https://github.com/rustls/rustls/pull/1405

top 1 comments
sorted by: hot top controversial new old
[–] Knusper@feddit.de 1 points 1 year ago

Cool. Ring has come up as a bit of an annoyance for us, because its license is relatively complex and as a result, not declared in the crate metadata. We've almost even considered replacing rustls with the openssl-crate, just to sidestep that whole issue.