Asger Hautop Drewsen

Results 136 comments of Asger Hautop Drewsen

It's not fire, it's snow.

It seems like this should be split up into two issues: the build failing and the runtime rustls failure. Updating my project from `1.6.0` to `1.7.0` I also get the...

> see above comments that below has to call > > ``` > let crypto_provider = rustls::crypto::aws_lc_rs::default_provider(); > crypto_provider.install_default().unwrap(); > ``` > ``` This is still a breaking change, so...

> > > see above comments that below has to call > > > > > > > > > > > > > > > > > > >...

This seems to be enough to trigger it: ```toml [package] name = "foo" version = "0.1.0" edition = "2021" [dependencies] amqprs = { version = "2.0.0", default-features = false, features...

Another problem: `amqprs` with the `tls` feature also compiles both `ring` and `aws-lc-rs`, whereas `reqwest` with the `rustls-tls` features only compiles `ring`. This must also be a problem in `amqprs`...

If I create separate configuration for when no external monitors are plugged in, autorandr seems to switch back and forth from it correctly.

I was thinking of just `modpow`, but Montgomery multiplication might also be nice.

It would also be nice to have some builtin operator support: ```python3 int1 = ... int2 = ... # Add interval(s) (equivalent): int1 + (1, 5) int1 | (1, 5)...