Fina
Fina
Otherwise passing a `Vec` requires iterating over every value, allocating a new Vec that borrows from the previous, passing that, then discarding the Vec. Alternatively one can only leak the...
This adds new API for constructing a code with a reasonably safe entropy. We also deprecate the old methods to construct a code, and emit warnings on the usage of...
Spawned from https://github.com/magic-wormhole/magic-wormhole.rs/pull/226#issuecomment-2209588985 This way we don't need to regenerate the manpage whenever something changes about the cli.
Everyone is using [tracing](https://github.com/tokio-rs/tracing) now and we are late to the party. If anyone wants to implement this let me know. The first step would be to migrate from `log`...
We can't merge this as of now, this renders subcommands as separate man pages, which for us would be way too noisy and unnecessary. See: https://github.com/clap-rs/clap/issues/5337 ``` SUBCOMMANDS wormhole-rs-send(1) Send...
The [docs](https://docs.rs/zerocopy/latest/zerocopy/#cargo-features) state the following: > However, you may experience better compile times if you instead directly depend on both zerocopy and zerocopy-derive in your Cargo.toml, since doing so will...
We should move towards specifying something about how we expect nameplates and passwords to look like. We have this open, which should be specified here: https://github.com/magic-wormhole/magic-wormhole-mailbox-server/issues/45 And then I was...
We recently had to break public API of `GtkAccessibleValue` in gtk because it was ambiguous, and not aligned to the W3C-ARIA spec. https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/7528 We still use this API in the...
**Bug description** When using this minimal example I get > the trait bound `gtk4::TemplateChild: ToValue` is not satisfied I need to specify the property as `#[property(get = |s: &&Self| (*s.test_widget).clone(),...