gftea
gftea
OK, I would yank the 1.70 and make a v2 release
@LockedThread , can we make this call inside our tls setup, so that user does not need to do that? Because cargo can auto upgrade to new version, api-wise, it...
I treat backward-compatible seriously, so I think better to make it v2.0.0 to follow semantic versioning
@LockedThread , thanks, I did not follow all threads here, seems quite a bit subtles to handle, do you have suggestions? I have yank 1.7.0, and make it as v2.0.0
can you do cargo tree to see which dep use `ring`? @tyilo
> By the way, are you considering windows GNU toolchain support? Unfortunately, most libraries don't focus on it, including AWS Libcrypto (that is a huge pain to build) which is...
> It still only happens with the new version of the crate though, which is weird. `amqprs` itself does not has its own `build.rs`, it must be from deps that...
Hi, unforntunately you can not do concurrent messaging on single channel, this is limitation in protocol. You can only do concurrent queue declare on different channels
see this https://docs.rs/amqprs/latest/amqprs/channel/struct.Channel.html#concurrency
the async runtime is multi-thread runtime, the await means it can be scheduled in multiple threads