Andrew Baxter
Andrew Baxter
Oops, my brain purged my cache. I'm trying to remember what I found when I was digging in... `std::io::Error` wraps an error in addition to the `Kind`, ex `Error::new(ErrorKind::Other, "oh...
Sorry, I'm not entirely sure, but that's included here: https://github.com/cozodb/cozo/blob/8b1b60cbf64f2b0ed2a14078cbd0c7838727df2a/cozo-core/src/parse/mod.rs#L39 ``` #[derive(pest_derive::Parser)] #[grammar = "cozoscript.pest"] pub(crate) struct CozoScriptParser; ``` It's a derive macro, which gets automatically run during normal complication....
A document explaining the implementation details would be great. And thanks, I thought this was higher level like the rx libraries. One thing they do is handle handler cycles by...
The `http` crate is used pretty widely, for a variety of situations where pseudo-HTTP are more common, for example in webview which might reasonably be loading local-filesystem resources (and in...
I'm not sure if this is a bad idea, but I'd like to do some security filtering on user queries: - Restricting queried relations - Adding membership clauses to relationship...
Looks like this may have been resolved in https://github.com/tikv/grpc-rs/pull/615 ?
Another reason is so you can mix units (like em and px).
Sorry, I should have been more clear. It fails ESLint checking with default checks. ESLint suggests `Record`. The problem is `interface Empty {}` accepts any values, contrary to `additionalProperties: false`....
> The first option is impossible to implement. The proc macro will only see the token `FEATURE_TEMPLATE_HTML`, and it is currently not possible to evaluate the context. (E.g. that's why...
Can I hack on this? I see `ec::PublicKey` is an opaque blob. AFAICT there's no information on the curve in that, and users need to supply the correct algorithm for...