1 unstable release

0.1.0 Nov 7, 2022

#1364 in Procedural macros

Download history 149/week @ 2023-12-18 54/week @ 2023-12-25 41/week @ 2024-01-01 76/week @ 2024-01-08 51/week @ 2024-01-15 42/week @ 2024-01-22 42/week @ 2024-01-29 47/week @ 2024-02-05 76/week @ 2024-02-12 72/week @ 2024-02-19 91/week @ 2024-02-26 85/week @ 2024-03-04 75/week @ 2024-03-11 86/week @ 2024-03-18 155/week @ 2024-03-25 155/week @ 2024-04-01

492 downloads per month
Used in 25 crates (via polywrap_schemafy)

MIT license

46KB
1K 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