2019-10-02 10:59:25 +02:00
|
|
|
# -*- eval: (cargo-minor-mode 1) -*-
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "gotham_restful_derive"
|
2020-05-20 23:55:19 +02:00
|
|
|
version = "0.1.0-rc0"
|
2019-10-02 10:59:25 +02:00
|
|
|
authors = ["Dominic Meiser <git@msrd0.de>"]
|
|
|
|
edition = "2018"
|
2020-05-05 23:18:05 +02:00
|
|
|
description = "RESTful additions for the gotham web framework - Derive"
|
2020-05-21 01:44:18 +02:00
|
|
|
keywords = ["gotham", "rest", "restful", "web", "http"]
|
2019-10-20 16:55:45 +02:00
|
|
|
license = "EPL-2.0 OR Apache-2.0"
|
2019-10-02 10:59:25 +02:00
|
|
|
repository = "https://gitlab.com/msrd0/gotham-restful"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
|
|
|
|
|
|
|
[dependencies]
|
2019-10-27 20:44:23 +00:00
|
|
|
heck = "0.3.1"
|
2020-05-20 23:55:19 +02:00
|
|
|
proc-macro2 = "1.0.13"
|
|
|
|
quote = "1.0.6"
|
2020-05-21 01:44:18 +02:00
|
|
|
syn = { version = "1.0.22", features = ["full"] }
|
2019-10-02 10:59:25 +02:00
|
|
|
|
|
|
|
[features]
|
2020-01-14 03:27:49 +01:00
|
|
|
default = []
|
2020-01-22 16:53:02 +00:00
|
|
|
auth = []
|
2020-01-14 03:27:49 +01:00
|
|
|
database = []
|
2019-10-02 10:59:25 +02:00
|
|
|
openapi = []
|