From 022edede62197b27463374c5feb7086ac5f46b47 Mon Sep 17 00:00:00 2001 From: Dominic Date: Mon, 4 May 2020 23:52:09 +0200 Subject: [PATCH] the next release will be 0.1.0, not 0.0.5 --- example/Cargo.toml | 2 +- gotham_restful/Cargo.toml | 12 ++++++------ gotham_restful_derive/Cargo.toml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/example/Cargo.toml b/example/Cargo.toml index af55bfa..f765a82 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -17,7 +17,7 @@ gitlab = { repository = "msrd0/gotham-restful", branch = "master" } fake = "2.2" gotham = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false } gotham_derive = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false } -gotham_restful = { version = "0.0.5-dev", features = ["auth", "openapi"] } +gotham_restful = { version = "0.1.0-dev", features = ["auth", "openapi"] } log = "0.4.8" log4rs = { version = "0.11", features = ["console_appender"], default-features = false } serde = "1.0.106" diff --git a/gotham_restful/Cargo.toml b/gotham_restful/Cargo.toml index 2e65978..836cd19 100644 --- a/gotham_restful/Cargo.toml +++ b/gotham_restful/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "gotham_restful" -version = "0.0.5-dev" +version = "0.1.0-dev" authors = ["Dominic Meiser "] edition = "2018" description = "RESTful additions for Gotham" @@ -23,7 +23,7 @@ futures-util = "0.3.4" gotham = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false } gotham_derive = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev" } gotham_middleware_diesel = { git = "https://github.com/gotham-rs/gotham", version = "0.1.0", optional = true } -gotham_restful_derive = { version = "0.0.4-dev" } +gotham_restful_derive = { version = "0.1.0-dev" } indexmap = { version = "1.3.2", optional = true } itertools = "0.9.0" jsonwebtoken = { version = "7.1.0", optional = true } @@ -31,14 +31,14 @@ log = "0.4.8" mime = "0.3.16" openapiv3 = { version = "0.3", optional = true } serde = { version = "1.0.106", features = ["derive"] } -serde_json = "1.0.51" -thiserror = "1.0.15" -uuid = { version = ">= 0.1, < 0.9", optional = true } +serde_json = "1.0.52" +thiserror = "1.0.16" +uuid = { version = "0.8.1", optional = true } [dev-dependencies] diesel = { version = "1.4.4", features = ["postgres"] } futures-executor = "0.3.4" -paste = "0.1.10" +paste = "0.1.12" [features] default = ["errorlog"] diff --git a/gotham_restful_derive/Cargo.toml b/gotham_restful_derive/Cargo.toml index bd7f368..275b490 100644 --- a/gotham_restful_derive/Cargo.toml +++ b/gotham_restful_derive/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "gotham_restful_derive" -version = "0.0.4-dev" +version = "0.1.0-dev" authors = ["Dominic Meiser "] edition = "2018" description = "RESTful additions for Gotham - Derive" @@ -19,8 +19,8 @@ gitlab = { repository = "msrd0/gotham-restful", branch = "master" } [dependencies] heck = "0.3.1" lazy_static = "1.4.0" -proc-macro2 = "1.0.10" -quote = "1.0.3" +proc-macro2 = "1.0.12" +quote = "1.0.4" regex = "1.3.7" syn = "1.0.18"