17 releases

0.6.0 Oct 6, 2021
0.5.2 May 18, 2021
0.5.1 Jul 12, 2020
0.5.0 Jul 7, 2019
0.1.1 Nov 27, 2016

#1585 in Encoding

Download history 5759/week @ 2023-12-18 3239/week @ 2023-12-25 6137/week @ 2024-01-01 7690/week @ 2024-01-08 13377/week @ 2024-01-15 9373/week @ 2024-01-22 8322/week @ 2024-01-29 9482/week @ 2024-02-05 9505/week @ 2024-02-12 8464/week @ 2024-02-19 10300/week @ 2024-02-26 10184/week @ 2024-03-04 11772/week @ 2024-03-11 13872/week @ 2024-03-18 13807/week @ 2024-03-25 13059/week @ 2024-04-01

53,336 downloads per month
Used in 15 crates (6 directly)

MIT license

110KB
1.5K SLoC

schemafy

Build Status Docs

This is a Rust crate which can take a JSON schema (draft 4) and generate Rust types which are serializable with serde. No checking such as min_value are done but instead only the structure of the schema is followed as closely as possible.

As a schema could be arbitrarily complex this crate makes no guarantee that it can generate good types or even any types at all for a given schema but the crate does manage to bootstrap itself which is kind of cool.

Example

Generated types for VS Codes debug server protocol: https://docs.rs/debugserver-types

Development

The types generated by the JSON schema specification can be regenerated with cargo build --features internal-regenerate if changes have been made in the library itself. Rustfmt is required so that src/schema.rs is readable.

Dependencies

~1.2–2MB
~41K SLoC