Robin Lambertz

Results 388 comments of Robin Lambertz

> There is no supported way really to actually get the source of a crates.io crate. I mean, there are supported ways for 3rd party tooling to acquire it? Afaik...

I've been thinking about this RFC, (which would really help us at work) and I think something we could do to push this forward is to experiment with this workflow...

Matching a deep String is another use-case: ```rust enum X { A(String), // ... } fn main() { match X::A("test".to_string()) { X::A(&"test") => (), X::A(_) => () } } ```

Yeah, the name is pretty bad, I didn't think long and hard on it :P. For the stack array, there are crates like [smallvec](https://docs.rs/smallvec/0.6.5/smallvec/) which provide stack arrays under a...

This PR is against the v0.3.x branch which hasn't changed since I made it. Should I reopen it on master?

Unless I misunderstand, allowroot does the exact opposite of what I want. It protects everything except the root. I only want to protect the root. I’m not sure how passthrough...

Caddy2 provides this free of charge with its new matcher functionality! #57

I did a very straightforward port in https://github.com/roblabla/caddy-jwt/tree/caddy2. It basically works exactly the same way (no fancy starlark integration or anything), but it: 1. Uses the Authenticator interface instead of...

I managed to get loginsrv ported over as well. However, I came across a fun little problem: `caddy-jwt` and `loginsrv` have a cool "feature" where `loginsrv` will automatically generate a...

From my understanding, `order` is an orthogonal concern: it will run the requests through the directives in the prescribed order. My problem has nothing to do with requests though, it's...