Cameron Elliott

Results 89 comments of Cameron Elliott

> Regarding the actual subject of this issue (as judged by the summary of the issue), the attempt to compile ARM instructions on thumb-only targets, I suggest we change build.rs...

@briansmith So, I'm learning. I wanted to see if I could get Ring to build for a thumb target. I managed to get it building with two changes: 1. Comment...

The RP2040 has a random bit generator that is not recommend for cryptography applications: > 2.17.5. Random Number Generator > If the system clocks are running from the XOSC and/or...

I think you might be trying non 'ws' 'wss' urls for the broker, just a suspicion. This got me too.

I think this is a really important function for Tokio. At least for my purposes it seems so. But, the fact the crate from @ijackson is AGPL, not MIT/Apache does...

It's probably worth noting there is a MIT/Apache [async Condvar in the async-std crate](https://docs.rs/async-std/latest/async_std/sync/struct.Condvar.html). It lacks a lot of the wonderful functionality the Condvar from @ijackson does, but it could...

I'd like to consider this library for a project of mine, and *no_std* would help for my needs. It would be cool if Arc and Mutex were not needed, but...

I'm not a maintainer on this project, but I just went through the tutorials twice myself. Once on macos, and once on linux. I ran into a similar issue. I...

After thinking about it a minute, I decided to post the Go1.18RC1 escape analysis output: ``` ./foo_test.go:10:23: p does not escape ./foo_test.go:14:25: b does not escape ./foo_test.go:17:14: make([]byte, 100) does...

BUUT! I found this repo, because for my case, the escape analysis was determining an important variable 'does escape', so, the techniques in this *can be very useful and valuable*....