3 unstable releases

0.6.0 Oct 6, 2021
0.5.2 May 18, 2021
0.5.1 Jul 12, 2020

#522 in Procedural macros

Download history 17301/week @ 2023-10-29 14672/week @ 2023-11-05 14429/week @ 2023-11-12 11981/week @ 2023-11-19 18308/week @ 2023-11-26 14227/week @ 2023-12-03 15854/week @ 2023-12-10 11353/week @ 2023-12-17 6972/week @ 2023-12-24 11487/week @ 2023-12-31 13444/week @ 2024-01-07 19605/week @ 2024-01-14 16594/week @ 2024-01-21 14841/week @ 2024-01-28 16382/week @ 2024-02-04 15607/week @ 2024-02-11

64,868 downloads per month
Used in 46 crates (10 directly)

MIT license

46KB
1K SLoC

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

Usage

Rust code is generated by providing a Schema struct (which can be deserialized from JSON).

A proc macro is available in schemafy crate

extern crate serde;
extern crate schemafy_core;
extern crate serde_json;

use serde::{Serialize, Deserialize};
use schemafy_lib::Expander;

let json = std::fs::read_to_string("src/schema.json").expect("Read schema JSON file");

let schema = serde_json::from_str(&json).unwrap();
let mut expander = Expander::new(
    Some("Schema"),
    "::schemafy_core::",
    &schema,
);

let code = expander.expand(&schema);

Dependencies

~2.5MB
~56K SLoC