David Roundy
David Roundy
Any chance this is going to be accepted, so something similar?
See https://wiki.debian.org/RFP for instructions on how to ask to have a package packaged. I'd also love to see tup packaged for Debian (which will automatically result in it getting into...
It might also be nice to simply link to the docs of a crate that uses cex, so we could see how the resulting type appears to a user.
Here is how I figured out to work around this issue: ``` let list_of_lists = path!(String).map(|name: String| { let name = percent_encoding::percent_decode(name.as_bytes()).decode_utf8().unwrap(); ... }); ``` It feels, however, like this...
I wonder for the next breaking change whether you'd want to switch to a new `FromPercentEncoding` trait, which for the standard types could be equivalent to `FromStr` for types for...
I'll mention that [native-dialog](https://crates.io/crates/native-dialog) might serve your needs.
I would personally prefer to have raft-rs work on stable, although having it be itself stable is higher priority.
This feature is also needed if you want it to be possible to implement a posix filesystem. Otherwise there is no way for the filesystem to determine which file is...
These are already supported with `Set64` and `Set64`. If you are hoping for better optimized versions than that, it might be worth benchmarking the size and speed of what we've...
I'm not sure what the error is that you are trying to fix. The comment where this is used states that any unique prefix of a flag is accepted, and...