From 6eba5df7b3d42d5591698da5550b96ea528acfc7 Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Sun, 11 Aug 2019 14:55:15 +0100 Subject: [PATCH] Fix schemars_derive dependency --- schemars/Cargo.toml | 4 ++-- schemars_derive/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/schemars/Cargo.toml b/schemars/Cargo.toml index 6d25a40..bd45a8a 100644 --- a/schemars/Cargo.toml +++ b/schemars/Cargo.toml @@ -2,14 +2,14 @@ name = "schemars" description = "Generate JSON Schemas from Rust code" repository = "https://github.com/GREsau/schemars" -version = "0.1.4" +version = "0.1.5" authors = ["Graham Esau "] edition = "2018" license = "MIT" keywords = ["rust", "json-schema", "serde"] [dependencies] -schemars_derive = { version = "0.1.3", path = "../schemars_derive" } +schemars_derive = { version = "0.1.5", path = "../schemars_derive" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/schemars_derive/Cargo.toml b/schemars_derive/Cargo.toml index 2457a40..862c3f6 100644 --- a/schemars_derive/Cargo.toml +++ b/schemars_derive/Cargo.toml @@ -2,7 +2,7 @@ name = "schemars_derive" description = "Macros for #[derive(JsonSchema)], for use with schemars" repository = "https://github.com/GREsau/schemars" -version = "0.1.4" +version = "0.1.5" authors = ["Graham Esau "] edition = "2018" license = "MIT"