mirror of
https://gitlab.com/msrd0/gotham-restful.git
synced 2025-02-23 04:52:28 +00:00
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
# -*- 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"
|
|
readme = "../README.md"
|
|
repository = "https://gitlab.com/msrd0/gotham-restful"
|
|
|
|
[badges]
|
|
gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
|
codecov = { repository = "msrd0/gotham-restful", branch = "master", service = "gitlab" }
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4", optional = true }
|
|
failure = "0.1"
|
|
futures = "0.1"
|
|
gotham = "0.4"
|
|
gotham_derive = "0.4"
|
|
gotham_restful_derive = { version = "0.0.1" }
|
|
hyper = "0.12"
|
|
indexmap = { version = "1.0", optional = true }
|
|
log = { version = "0.4", optional = true }
|
|
mime = "0.3"
|
|
openapiv3 = { version = "0.3", optional = true }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uuid = { version = ">= 0.1, < 0.9", optional = true }
|
|
|
|
[dev-dependencies]
|
|
thiserror = "1"
|
|
|
|
[features]
|
|
default = []
|
|
openapi = ["gotham_restful_derive/openapi", "indexmap", "log", "openapiv3"]
|