diff --git a/README.md b/README.md index b62ab16..334c186 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,6 @@ Generate JSON Schema documents from Rust code -Work in progress! - ## Basic Usage If you don't really care about the specifics, the easiest way to generate a JSON schema for your types is to `#[derive(JsonSchema)]` and use the `schema_for!` macro. All fields of the type must also implement `JsonSchema` - Schemars implements this for many standard library types. diff --git a/schemars/src/lib.rs b/schemars/src/lib.rs index 897a260..672ff96 100644 --- a/schemars/src/lib.rs +++ b/schemars/src/lib.rs @@ -1,8 +1,6 @@ /*! Generate JSON Schema documents from Rust code -Work in progress! - ## Basic Usage If you don't really care about the specifics, the easiest way to generate a JSON schema for your types is to `#[derive(JsonSchema)]` and use the `schema_for!` macro. All fields of the type must also implement `JsonSchema` - Schemars implements this for many standard library types.