schemars 0.8.3

Generate JSON Schemas from Rust code
Documentation
mod util;
use ::schemars as not_schemars;
use util::*;

#[allow(unused_imports)]
use std as schemars;

#[derive(Debug, not_schemars::JsonSchema)]
#[schemars(crate = "not_schemars")]
pub struct Struct {
    /// This is a document
    foo: i32,
    bar: bool,
}

#[test]
fn test_crate_alias() -> TestResult {
    test_default_generated_schema::<Struct>("crate_alias")
}