| Crates.io | schemafy |
| lib.rs | schemafy |
| version | 0.6.0 |
| created_at | 2016-11-01 20:22:54.123937+00 |
| updated_at | 2021-10-06 10:32:27.035492+00 |
| description | Generates serializeable Rust types from a json schema |
| homepage | |
| repository | https://github.com/Marwes/schemafy |
| max_upload_size | |
| id | 7103 |
| size | 410,658 |
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.
Generated types for VS Codes debug server protocol: https://docs.rs/debugserver-types
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.