Ethan D Twardy

Results 4 issues of Ethan D Twardy

Previously, the output of `meson build` would warn about the use of some functions that have been deprecated since meson v0.56.0, and the use of the `check` kwarg in the...

Previously, if OpenAPI v3 document A loads document B, and B refers to schemas in document A, swagger-parser would not resolve references to schemas in A as internal refs, even...

Consider the following schemas: TestCase.yaml: ``` components: schemas: TestCase_TestCase: anyOf: - $ref: ./TestCase.v1.yaml#/components/schemas/TestCase_v1_TestCase TestCase_Foo: properties: FooTypes: items: $ref: ./TestCase.yaml#/components/schemas/TestCase_FooType type: array type: object TestCase_FooType: enum: - All - OEM type:...

I have a use case where I need to "deserialize" `Value`s into instances of `struct Foo`. This feels related to #17. Perhaps the impedance mismatch between [valuable::Visit](https://docs.rs/valuable/latest/valuable/trait.Visit.html) and [serde::de::Visit](https://docs.rs/serde/latest/serde/de/trait.Visitor.html) is...