From 96870ecabbeede40c3b498d931602e403a74864c Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Wed, 30 Oct 2019 22:13:03 +0000 Subject: [PATCH] Remove "work in progress" note from readme --- README.md | 2 -- schemars/src/lib.rs | 2 -- 2 files changed, 4 deletions(-) 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.