From 40e6d1bc036ae43061c5f3fc19c82c1cb37cb105 Mon Sep 17 00:00:00 2001 From: Dominic Date: Wed, 15 Apr 2020 23:01:21 +0200 Subject: [PATCH] make clear that this tracks gotham master --- README.md | 3 +++ example/Cargo.toml | 2 +- gotham_restful/Cargo.toml | 4 ++-- gotham_restful/src/lib.rs | 3 +++ gotham_restful_derive/Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7af32f1..8ebf802 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,9 @@ bodies, relying on [`serde`][serde] and [`serde_json`][serde_json] for (de)seria enable the `openapi` feature, you can also generate an OpenAPI Specification from your RESTful resources. +**Note:** The master branch currently tracks gotham's master branch and the next release will use +gotham 0.5.0 and be compatible with the new future / async stuff. + ## Usage A basic server with only one resource, handling a simple `GET` request, could look like this: diff --git a/example/Cargo.toml b/example/Cargo.toml index b3e08cd..022a647 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.4", features = ["auth", "openapi"] } +gotham_restful = { version = "0.0.5-dev", features = ["auth", "openapi"] } log = "0.4" log4rs = { version = "0.8", features = ["console_appender"], default-features = false } serde = "1" diff --git a/gotham_restful/Cargo.toml b/gotham_restful/Cargo.toml index dcea947..6b41c39 100644 --- a/gotham_restful/Cargo.toml +++ b/gotham_restful/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "gotham_restful" -version = "0.0.4" +version = "0.0.5-dev" authors = ["Dominic Meiser "] edition = "2018" description = "RESTful additions for Gotham" @@ -24,7 +24,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.3" } +gotham_restful_derive = { version = "0.0.4-dev" } hyper = "0.13.4" indexmap = { version = "1.3.0", optional = true } jsonwebtoken = { version = "7.1.0", optional = true } diff --git a/gotham_restful/src/lib.rs b/gotham_restful/src/lib.rs index 9253f3e..cf1ef9c 100644 --- a/gotham_restful/src/lib.rs +++ b/gotham_restful/src/lib.rs @@ -6,6 +6,9 @@ bodies, relying on [`serde`][serde] and [`serde_json`][serde_json] for (de)seria enable the `openapi` feature, you can also generate an OpenAPI Specification from your RESTful resources. +**Note:** The master branch currently tracks gotham's master branch and the next release will use +gotham 0.5.0 and be compatible with the new future / async stuff. + # Usage A basic server with only one resource, handling a simple `GET` request, could look like this: diff --git a/gotham_restful_derive/Cargo.toml b/gotham_restful_derive/Cargo.toml index c1f460e..0b65218 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.3" +version = "0.0.4-dev" authors = ["Dominic Meiser "] edition = "2018" description = "RESTful additions for Gotham - Derive"