Paul Colomiets
Paul Colomiets
Any chance this got merged? It's super useful for me too.
Sure. This is just blocked by a [refactoring](https://github.com/tailhook/cantal/tree/tokio) to use tokio for networking. It's bad idea to work on it on the old networking stack (which is very ancient now).
Skip until seems to work. By my intention was also to emit `Unclosed` error for `"..."` and it looks like the only way to do that is `nested_delimiters` recovery (or...
> You could just use `map_err` afterwards to emit the error you care about. The problem with map_err on quoted strings is that it catches all the inner errors (i.e....
Another issue with `map_err` (which is both for nested delimiters and non-nested delimiters) is that: ``` let x = inner1.delimited_by(just('"'), just('"')).map_err(|e| ...) let y = inner2.delimited_by(just('{'), just('}')); x.or(y) ``` This...
> (Apologies, I'm planning to get round to answering this but I've not had much time over the last few days) Sure. No pressure. I'm relatively satisfied with what I'm...
Thanks! > > Why it counts characters and not byte offsets? It's hard to spot this thing deep in the documentation. > > I'm planning to switch to byte offsets...
Any follow-up on this issue? I'm interested in crypto_box / crypto_secretbox API. The `hsalsa20` is already exported. Is this still seems out of scope for this crate? (or is this...
I have no specific plans.And I think it might be useful. So pull requests are accepted. I'm not sure what syntax should be, though. So we can probably bikeshed on...
@alexreg, you also need a syntax for tuple structs > Talking about syntax, it would be nice to require (or at least accept) commas after blocks for each enum variant....