From 87b56f2a77ee60b885267cb43fbc3384565c2f05 Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Thu, 8 Aug 2019 19:00:48 +0100 Subject: [PATCH] Add package info to Cargo.toml --- schemars/Cargo.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/schemars/Cargo.toml b/schemars/Cargo.toml index 35ef431..67eec45 100644 --- a/schemars/Cargo.toml +++ b/schemars/Cargo.toml @@ -1,10 +1,12 @@ [package] name = "schemars" +description = "Generate JSON Schemas from Rust code" +repository = "https://github.com/GREsau/schemars" version = "0.1.0" -authors = ["Graham Esau "] +authors = ["Graham Esau "] edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +license = "MIT" +keywords = ["rust", "json-schema", "serde"] [dependencies] serde = { version = "1.0", features = ["derive"] }