Remove "work in progress" note from readme

This commit is contained in:
Graham Esau 2019-10-30 22:13:03 +00:00
parent 1044718dbd
commit 96870ecabb
2 changed files with 0 additions and 4 deletions

View file

@ -7,8 +7,6 @@
Generate JSON Schema documents from Rust code Generate JSON Schema documents from Rust code
Work in progress!
## Basic Usage ## 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. 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.

View file

@ -1,8 +1,6 @@
/*! /*!
Generate JSON Schema documents from Rust code Generate JSON Schema documents from Rust code
Work in progress!
## Basic Usage ## 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. 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.