Sergio Benitez

Results 252 comments of Sergio Benitez

I'd be in favor of adding support under a `diesel-2` feature flag or similar, leaving the current support in tact. Please submit a PR doing so, using the existing implementation...

> Polygons shouldn't be allowed to have less than 3 sides, but there is no simple way to enforce this. Ideally we could do something similar to form validation, with...

For those watching: design discussions are taking place on Matrix. Here is my proposed API for websockets, by example: ```rust //! A multiroom chat application with a special `echo` room...

Rocket won't impose any kind of protocol by default. A "channel" is just the name for an internal handle that represents a topic and a client.

@mehcode I'd love to see how this would look! I have a few requirements for Rocket's "next-gen" logging: 1. Every log statement should have a `Request` associated with it for...

@marcusball The main motivation for 2) is to be able to log messages from generated code without requiring the user to `macro_use`. Number 5 is indeed pretty tricky, and I...

Pushing to 0.4.

@dpc Excited to see what you come up with!

It seems pretty clear that this will slip to 0.5, so I'm officially marking it as such. If anyone is interested in spearheading the development here, I am happy to...

Yes! We should make this happen. What's the syntax? Should the following work as expected? ```rust #[get("/v2//manifests/")] fn handler(repo: Repository, ref: Ref) -> T { ... } // Repository: FromSegments...