1 unstable release

0.1.0 Nov 7, 2022

#1245 in Procedural macros

Download history 65/week @ 2024-07-22 55/week @ 2024-07-29 81/week @ 2024-08-05 69/week @ 2024-08-12 58/week @ 2024-08-19 117/week @ 2024-08-26 54/week @ 2024-09-02 75/week @ 2024-09-09 68/week @ 2024-09-16 89/week @ 2024-09-23 51/week @ 2024-09-30 2/week @ 2024-10-07 50/week @ 2024-10-14 57/week @ 2024-10-21 48/week @ 2024-10-28 69/week @ 2024-11-04

224 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.3–2.2MB
~43K SLoC