mirror of
https://gitlab.com/msrd0/gotham-restful.git
synced 2025-02-23 04:52:28 +00:00
33 lines
927 B
TOML
33 lines
927 B
TOML
# -*- eval: (cargo-minor-mode 1) -*-
|
|
|
|
[package]
|
|
name = "gotham_restful_openapi"
|
|
version = "0.0.1"
|
|
authors = ["Dominic Meiser <git@msrd0.de>"]
|
|
edition = "2018"
|
|
description = "RESTful additions for Gotham - OpenAPI Support"
|
|
keywords = ["gotham", "rest", "restful", "openapi", "swagger"]
|
|
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]
|
|
futures = "0.1.29"
|
|
gotham = "0.4"
|
|
gotham_derive = "0.4"
|
|
gotham_restful = "0.0.3"
|
|
gotham_restful_derive = { version = "0.0.2", features = ["openapi"] }
|
|
hyper = "0.12.35"
|
|
indexmap = "1.3.0"
|
|
log = "0.4.8"
|
|
mime = "0.3.16"
|
|
openapiv3 = "0.3"
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
serde_json = "1.0.45"
|
|
|
|
[dev-dependencies]
|
|
thiserror = "1"
|