fontspector-checkapi 1.6.0

Library for developing checks for the fontspector font QA tool
1
2
3
4
5
6
7
8
use fontspector_checkapi::Profile;
use schemars::schema_for;

#[allow(clippy::unwrap_used)]
fn main() {
    let schema = schema_for!(Profile);
    println!("{}", serde_json::to_string_pretty(&schema).unwrap());
}