Closed evshary closed 1 month ago
rustls supports both ring and aws-lc-rs. Although it decides to use aws-lc-rs by default, it still provides features for users to choose ring. https://github.com/rustls/rustls?tab=readme-ov-file#platform-support
rustls
ring
aws-lc-rs
It would be great if ntex could provide such an option for users to choose from since some people face the issue while using aws-lc-rs, for example, https://github.com/rustls/rustls/issues/1913
ntex
i think ntex could use “default-features = false”, then you can select right feature in your code.
changed in ntex-v2.6.0
@fafhrd91 Thanks for your fast update. I've verified it and it works on my side!
rustls
supports bothring
andaws-lc-rs
. Although it decides to useaws-lc-rs
by default, it still provides features for users to choosering
. https://github.com/rustls/rustls?tab=readme-ov-file#platform-supportIt would be great if
ntex
could provide such an option for users to choose from since some people face the issue while usingaws-lc-rs
, for example, https://github.com/rustls/rustls/issues/1913