json-schema-rs 0.0.5

A Rust library to generate Rust structs from JSON Schema.
Documentation
1
2
3
4
5
6
7
//! CLI entry point for jsonschemars: generate Rust from JSON Schema, validate JSON against a schema.

mod cli;

fn main() {
    cli::run();
}