Pascal Hertleif
Pascal Hertleif
We recently added these docs: https://github.com/killercup/a-range/blob/ce391ed856e5fb52e9445496ccec046b91359ed5/src/lib.rs#L54-L58 This behavior is tested in this unit test: https://github.com/killercup/a-range/blob/ce391ed856e5fb52e9445496ccec046b91359ed5/src/lib.rs#L393-L397 It is also possible for this to become a [doc test](https://doc.rust-lang.org/1.29.2/rustdoc/documentation-tests.html#attributes) (as I've just found...
- [ ] `for i in a_range::from(1).up_to(5).iter() { let _i: &i32 = i; }` compiles - [ ] Tests added as doc tests on `iter()` method
Either the crate-level or the Range docs should describe how to write a custom type that can be used as an index. (This will require you to impl `num_traits::One` for...
Re: https://github.com/LeopoldArkham/Molten/pull/40#issuecomment-349012966 This PR - adds some fuzzer documentation/introduction, - runs fuzzer with debug assertions (they should really hold), - and finally adds a Travis build that does nothing but...
Might be interesting to see whether using [fst](https://docs.rs/fst) can be faster than phf and/or yield a smaller binary size. You'll probably have to build with the (compressed) contents first and...
I just copied format_changeset.rs verbatim into a repo (cf. ) to get your fancy diff output without the assert/panic part :) Maybe it'd make sense to create at difference-formatters crate...
I know Tilt supports CoffeeScript, but Bonsai doesn't compile it like it does SASS. Could this be implemented?
If you want to ship binary releases (you should!), I recommend looking into https://github.com/japaric/trust/ :)
This also adds a verbose-debug feature that enables the new behavior. Previously: > data did not match any variant of untagged enum ReferenceOr at line 6 column 4 Now, with...