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

38 lines
938 B
TOML
Raw Normal View History

2019-09-26 17:24:40 +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"
readme = "README.md"
include = ["src/**/*", "Cargo.toml", "LICENSE"]
repository = "https://gitlab.com/msrd0/gotham-restful"
[badges]
gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
[dependencies]
failure = "0.1"
futures = "0.1"
gotham = "0.4"
2019-09-27 16:36:38 +02:00
gotham_derive = "0.4"
2019-09-26 17:24:40 +02:00
hyper = "0.12"
2019-09-29 21:15:22 +02:00
indexmap = { version = "1.0", optional = true }
2019-09-26 17:24:40 +02:00
mime = "0.3"
2019-09-29 21:15:22 +02:00
openapiv3 = { version = "0.3", optional = true }
2019-09-27 16:36:38 +02:00
serde = { version = "1", features = ["derive"] }
2019-09-26 17:24:40 +02:00
serde_json = "1"
2019-09-27 15:35:02 +02:00
[dev-dependencies]
fake = "2.2"
2019-09-27 15:45:54 +02:00
log = "0.4"
2019-09-27 15:56:08 +02:00
log4rs = { version = "0.8", features = ["console_appender"], default-features = false }
2019-09-29 21:15:22 +02:00
[features]
default = ["openapi"]
openapi = ["indexmap", "openapiv3"]