aws / s2n-tls

An implementation of the TLS/SSL protocols
https://aws.github.io/s2n-tls/usage-guide/
Apache License 2.0
4.53k stars 711 forks source link

Unpin dependencies after bumping MSRV beyond 1.72 #4518

Open goatgoose opened 7 months ago

goatgoose commented 7 months ago

Problem:

The zeroize dependency of aws-lc-rs -> s2n-tls-sys has updated their MSRV to 1.72 in v1.8.0. This breaks our build, since our MSRV is < 1.72. The zeroize dependency will be pinned to work around this MSRV increase.

Solution:

zeroize should be unpinned after our MSRV is increased to 1.72.

dougch commented 5 months ago

also #4395