Results 64 comments of Kurt Wolf

Thank you for sharing those benchmarks. That document describes pretty egregious increases in compilation times: 0.1s without macros to 2.3s using bon. That wouldn't be acceptable for this library, so...

No support currently, but definitely a welcome feature. I think the main difficulty is knowing what errors correspond to what error codes. If you have a proposal, or you want...

You definitely can use multiple routers. Feel free to open an issue if you encounter any.

I think this can be done with a combination of [`merge`](https://docs.rs/openapiv3-extended/6.0.0/openapiv3/struct.OpenAPI.html#method.merge) and adding different routers into a single service, but I haven't done this before. Please comment with your specific...

I welcome PRs but realistically don't have time to look at this myself.

That's a pretty sane error message. Basically, you have a query param in operation ByProjectKeyApiClientsGet with `name: /^var[.][a-zA-Z0-9]+$/`. libninja fails because it's too difficult to make a valid identifier from...

looks good, thank you! Just as a warning, the Join functionality is still very much alpha/WIP and very incomplete. Very happy to merge in PRs and support finishing it, just...

It's not a NewType(String), but here's an example of what you're probably missing for an Enum: ```rs #[derive(Debug, Clone, Copy, Serialize, Deserialize, OaSchema)] #[serde(rename_all = "kebab-case")] pub enum JobName {...

@SpartanPlume If structs need an `id` field, that's a bug. Please share more details with code samples and error messages and I'll try to help. Separate issue so maybe for...

i don't use sqlite enough to build it myself. all the machinery is based on sqlmo and sqlx, though, so it shouldn't be too hard to add support for it,...