Paul Weaver
Paul Weaver
After talking to @mvantellingen via email I've sketched out the first part of restriction/facet handling. Currently this MR doesn't include a huge amount of testing - I'd like to verify...
The Text field accepts line breaks in its content string, but does not preserve consecutive line breaks because it uses str.splitlines() internally. This is a shame because making 'document' layouts...
As a developer writing a rich and powerful application, I need a rich and powerful selection of UI elements to make my project work how I want it to. To...
I was just reading through your source code and spotted some things that needed a bit of a tidy. Hopefully the commits are self-explanatory.
This is intended to be akin to the `FromStr` implementation for `String` [found in `std::string`](https://doc.rust-lang.org/src/alloc/string.rs.html#2407-2413).
Running `cargo check --no-default-features` fails on the latest tag (`v0.34.1`) and on master (467b6c00b1139593e6c402f24453855c3af84141, 7 commits after the `v0.34.1` tag). My use case for `--no-default-features` is that I want to...
Just trying out this package and reading through the source code. I made a couple of minor tweaks for your consideration: - The main one, functionally, is not to have...
It appears that the lifetime of `Q: StatementLike + 'a` in `Queryable::exec_iter` is at odds with that in, for example `Queryable::exec` where `Q: StatementLike + 'b`. In the first case...