Oleksandr Babak
Oleksandr Babak
Hello, thank you for great plugin! It would be great if you could've call `cmp.confirm()` when users just continues to type. In conjunction to `preselect = types.cmp.PreselectMode.None` user would be...
Hello, when I'm trying this command ```bash wasm-opt -Oz iot-config-web-dx_bg.wasm --zero-filled-memory -o out.wasm ``` I'm getting this: ``` fish: Job 1, '~/code/binaryen/bin/wasm-opt -O…' terminated by signal SIGSEGV (Address boundary error)...
Hello, It is common in async rust to have `split` method on sockets to get read and write halves. For example, [tokio](https://docs.rs/tokio/latest/tokio/net/struct.TcpStream.html#method.split). While reading the docs, I didn't find anything...
Hello, In my use case I would like to have something like `embassy_executor::Spawner::replace_spawn`, that will always succeed. If it cannot spawn a new task, it would cancel some already existing...
Hello, thank you for a great library! This PR adds opt-in support for `no_std` environments.
``` error: unsupported type INTERVAL[] of column #2 ("event_offsets") ``` Hello, I'm querying array of intervals, but sqlx give that error. That PR fixes it
This PR adds zero-allocation and `const` way to create a waker from the function pointer. Rust can automatically convert `|| ...` clojures into `fn()` pointers if they don't capture anything,...
`futures-buffered` is only used in `concurrent_stream`, which is feature gated to `feature = "alloc"`. But dependency is not optional, thus compiler still requires you to devine a global allocator.
As far as I can understand from [here](https://github.com/rust-lang/unsafe-code-guidelines/issues/411#issuecomment-1579399099), there are issues with using "`VolatileCell`" in `svd2rust`, and it is not really going to change. Maybe slowly move away from it?
Hello, looking at `rtic_sync::channel` I saw this: ```rust impl Channel { const _CHECK: () = assert!(N < 256, "This queue support a maximum of 255 entries"); const INIT_SLOTS: UnsafeCell =...