1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-02-23 13:02:28 +00:00
deprecated-gotham-restful/gotham_restful/Cargo.toml

46 lines
1.5 KiB
TOML
Raw Normal View History

2019-10-02 10:59:25 +02:00
# -*- eval: (cargo-minor-mode 1) -*-
[package]
name = "gotham_restful"
version = "0.0.1"
authors = ["Dominic Meiser <git@msrd0.de>"]
edition = "2018"
description = "RESTful additions for Gotham"
keywords = ["gotham", "rest", "restful"]
license = "EPL-2.0 OR Apache-2.0"
2019-10-27 22:29:59 +01:00
readme = "README.md"
2019-10-02 10:59:25 +02:00
repository = "https://gitlab.com/msrd0/gotham-restful"
[badges]
gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
2019-10-14 02:48:52 +02:00
codecov = { repository = "msrd0/gotham-restful", branch = "master", service = "gitlab" }
2019-10-02 10:59:25 +02:00
[dependencies]
base64 = { version = "0.11", optional = true }
2019-10-27 21:58:05 +01:00
chrono = { version = "0.4.9", optional = true }
cookie = { version = "0.12", optional = true }
2019-10-27 21:58:05 +01:00
failure = "0.1.6"
futures = "0.1.29"
2019-10-02 10:59:25 +02:00
gotham = "0.4"
gotham_derive = "0.4"
gotham_middleware_diesel = { version = "0.1", optional = true }
2019-10-20 17:42:33 +02:00
gotham_restful_derive = { version = "0.0.1" }
2019-10-27 21:58:05 +01:00
hyper = "0.12.35"
indexmap = { version = "1.3.0", optional = true }
jsonwebtoken = { version = "6.0.1", optional = true }
2019-10-27 21:58:05 +01:00
log = { version = "0.4.8", optional = true }
mime = "0.3.14"
2019-10-02 10:59:25 +02:00
openapiv3 = { version = "0.3", optional = true }
2019-10-27 21:58:05 +01:00
serde = { version = "1.0.102", features = ["derive"] }
serde_json = "1.0.41"
2019-10-20 18:23:36 +02:00
uuid = { version = ">= 0.1, < 0.9", optional = true }
2019-10-02 10:59:25 +02:00
2019-10-14 02:17:25 +02:00
[dev-dependencies]
thiserror = "1"
2019-10-02 10:59:25 +02:00
[features]
2019-10-06 15:03:30 +02:00
default = []
auth = ["gotham_restful_derive/auth", "base64", "cookie", "jsonwebtoken"]
database = ["gotham_restful_derive/database", "gotham_middleware_diesel"]
2019-10-06 15:03:30 +02:00
openapi = ["gotham_restful_derive/openapi", "indexmap", "log", "openapiv3"]