1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-04-20 06:54:46 +00:00
This commit is contained in:
Dominic 2019-10-20 17:42:33 +02:00
parent 11aa24f6ce
commit 78be60b1a4
Signed by: msrd0
GPG key ID: DCC8C247452E98F9
12 changed files with 29 additions and 5 deletions

View file

@ -9,7 +9,6 @@ description = "RESTful additions for Gotham"
keywords = ["gotham", "rest", "restful"]
license = "EPL-2.0 OR Apache-2.0"
readme = "../README.md"
include = ["src/**/*", "Cargo.toml", "../LICENSE"]
repository = "https://gitlab.com/msrd0/gotham-restful"
[badges]
@ -22,7 +21,7 @@ failure = "0.1"
futures = "0.1"
gotham = "0.4"
gotham_derive = "0.4"
gotham_restful_derive = { path = "../gotham_restful_derive" }
gotham_restful_derive = { version = "0.0.1" }
hyper = "0.12"
indexmap = { version = "1.0", optional = true }
log = { version = "0.4", optional = true }

View file

@ -0,0 +1 @@
../LICENSE-Apache

1
gotham_restful/LICENSE-EPL Symbolic link
View file

@ -0,0 +1 @@
../LICENSE-EPL

1
gotham_restful/LICENSE.md Symbolic link
View file

@ -0,0 +1 @@
../LICENSE.md

View file

@ -1,5 +1,6 @@
#[cfg(feature = "openapi")]
use crate::{OpenapiType, result::ResourceError};
use crate::OpenapiType;
use crate::result::ResourceError;
use hyper::Chunk;
use mime::{Mime, APPLICATION_JSON};