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

53 lines
1.8 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.1.0-dev"
2019-10-02 10:59:25 +02:00
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" }
[dependencies]
base64 = { version = "0.12.0", optional = true }
2020-04-15 23:15:13 +02:00
chrono = { version = "0.4.11", optional = true }
cookie = { version = "0.13.3", optional = true }
futures-core = "0.3.4"
futures-util = "0.3.4"
gotham = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false }
gotham_derive = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev" }
gotham_middleware_diesel = { git = "https://github.com/gotham-rs/gotham", version = "0.1.0", optional = true }
gotham_restful_derive = { version = "0.1.0-dev" }
2020-04-15 23:15:13 +02:00
indexmap = { version = "1.3.2", optional = true }
itertools = "0.9.0"
jsonwebtoken = { version = "7.1.0", optional = true }
log = "0.4.8"
2020-01-24 17:59:20 +01:00
mime = "0.3.16"
2019-10-02 10:59:25 +02:00
openapiv3 = { version = "0.3", optional = true }
2020-04-15 23:15:13 +02:00
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.52"
thiserror = "1.0.16"
uuid = { version = "0.8.1", optional = true }
2019-10-02 10:59:25 +02:00
2019-10-14 02:17:25 +02:00
[dev-dependencies]
2020-05-04 21:34:20 +02:00
diesel = { version = "1.4.4", features = ["postgres"] }
futures-executor = "0.3.4"
paste = "0.1.12"
2020-05-05 19:31:02 +02:00
trybuild = "1.0.26"
2019-10-14 02:17:25 +02:00
2019-10-02 10:59:25 +02:00
[features]
2020-05-04 21:34:20 +02:00
default = ["errorlog"]
auth = ["gotham_restful_derive/auth", "base64", "cookie", "jsonwebtoken"]
2020-02-10 21:41:44 +01:00
errorlog = []
database = ["gotham_restful_derive/database", "gotham_middleware_diesel"]
openapi = ["gotham_restful_derive/openapi", "indexmap", "openapiv3"]
2020-01-25 14:11:57 +01:00
[package.metadata.docs.rs]
all-features = true