schemars 0.8.13

Generate JSON Schemas from Rust code
Documentation
1
2
3
4
5
6
7
8
mod util;
use smol_str::SmolStr;
use util::*;

#[test]
fn smol_str() -> TestResult {
    test_default_generated_schema::<SmolStr>("smol_str")
}