Martin Hoffmann
Martin Hoffmann
I think `Entry` uses the space thing to determine whether a line is indented as that signifies using the owner name from the last entry. This could become a simple...
If we do this break and declare `Scanner` to only supply a sequence of tokens, then I don’t think we need to introduce the `ZoneScanner` trait just yet and rather...
The minimum Rust version has been increased to 1.49 in the main branch.
My idea was to have the octets type be an associated type of the `Scanner` trait and have `Scan` be generic over the `Scanner`. Isn’t that good enough?
The [octseq](https://github.com/NLnetLabs/octseq) crate is now available. So, convert to using that.
Thanks for the suggestions! There definitely is a bunch of stuff that needs adding to make the library more useful out of the box. > There are some convenience functions...
Looking at both `src/lib.rs` and `Cargo.toml`, I think we only lack documentation for the `resolv-sync`, `random`, `interop`, and `ci-test` features. We’ll fix that before a release. The `interop` feature is...
It is. I made #120 for it.
In this particular case, the issue is that the implementation of `OctetsBuilder::append_slice` isn’t checking that the length never exceeds the `u16` size limit. In other words, the type should enforce...
Given that `append_slice` can be expensive, I would want to check the eventual length before even attempting to call it. I don’t think `update_shim` needs to actually check once the...