You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
s2n-tls = { version = "=0.0.35", features = ["quic"] }
This forces any applications consuming s2n-quic to also consume the exact same version. This is needlessly strict, since s2n-quic is using a relatively stable API at this point and doesn't require all of the latest features.
Solution:
Instead, we should pin to a more stable minor version (0.1.0) once aws/s2n-tls#4165 is resolved.
The text was updated successfully, but these errors were encountered:
Problem:
Right now we pin the s2n-tls version to a specific value:
s2n-quic/quic/s2n-quic-tls/Cargo.toml
Line 24 in 7016e9c
This forces any applications consuming s2n-quic to also consume the exact same version. This is needlessly strict, since s2n-quic is using a relatively stable API at this point and doesn't require all of the latest features.
Solution:
Instead, we should pin to a more stable minor version (
0.1.0
) once aws/s2n-tls#4165 is resolved.The text was updated successfully, but these errors were encountered: