cw-schema 3.0.5

A dependency for CosmWasm contracts to generate schema files for their messages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(dead_code)]

#[derive(cw_schema::Schemaifier)]
pub struct SelfRef {
    meow: Vec<SelfRef>,
}

#[test]
fn selfref() {
    insta::assert_json_snapshot!(cw_schema::schema_of::<SelfRef>());
}