Luca Barbato

Results 667 comments of Luca Barbato

The order should be the opposite, I think. Check what's the rustc final invocation passing -v to cargo

that I can see they are not present.

I guess part of the problem is that host and target are the same x86_64 to add additional confusion to the issue ...

I wonder when that variable went away...

That should still work, the cargo home should be empty when you start...

Right now I'm having the opposite problem, the generic type is inlined even if I use `#[schema(inline = false)]` on it.

I have a situation like ```rust #[derive(ToSchema)] struct A { #[schema(inline = false)] a: Vec } #[derive(ToSchema)] struct B { #[schema(inline = false)] b: T, } ``` T is inlined...

Even simpler reproducer: ```rust #[derive(Debug, Serialize, ToSchema)] enum E { } #[derive(Debug, Serialize, ToSchema)] struct S { total: i32, #[schema(inline = false)] severities: HashMap, } ``` S inlines E

It also triggers https://github.com/acacode/swagger-typescript-api/issues/991