Alvenix
Alvenix
> Well, what are you trying to do with the data? A `TempFile` is to be used when you're trying to save the data to disk, or when the amount...
I have tried encoding using snmp_rasn to find the diference. There is only 1 bit difference, it is the tag resulting from Nested\ (used for USMSecurityParameters) It is the third...
As [1142](https://github.com/Byron/gitoxide/pull/1142) was merged, gix now respect sslVerify for the curl http backend.
> ```diff > diff --git a/rustls/src/crypto/mod.rs b/rustls/src/crypto/mod.rs > index 74b19ea6..9f029aed 100644 > --- a/rustls/src/crypto/mod.rs > +++ b/rustls/src/crypto/mod.rs > @@ -215,6 +215,29 @@ pub struct CryptoProvider { > } > >...
> the information is available at compile time It isn't. Because the user could have installed a default crypto provider.
> That proposal also breaks feature additivity: if you carefully arrange to enable only the `ring` feature because you want to use ring, but later something in your distant dependency...
Personally, I prefer what I suggested (using aws-lc-rs override ring) instead of panicking but it is up to you.
I am going to restate what I have said before. You can close the issue if you aren't comfortable with what I suggested. > We've seen very passionate arguments in...
> We've seen very passionate arguments in favour of being able to use ring and only ring and this approach would harm the wishes of those users. Could it be...
Thinking about it. If raising MSRV is an option, It is possible in rustls to do: ``` const MAXIMUM_ONE_FEATURE_IS_ENABLED: bool = cfg!(feature = "ring") && cfg!(not(feature = "aws_lc_rs")) || cfg!(not(feature...