mirror of
https://gitlab.com/msrd0/gotham-restful.git
synced 2025-02-23 13:02:28 +00:00
29 lines
660 B
TOML
29 lines
660 B
TOML
# -*- eval: (cargo-minor-mode 1) -*-
|
|
|
|
[package]
|
|
name = "gotham_restful_derive"
|
|
version = "0.1.0"
|
|
authors = ["Dominic Meiser <git@msrd0.de>"]
|
|
edition = "2018"
|
|
description = "RESTful additions for the gotham web framework - Derive"
|
|
keywords = ["gotham", "rest", "restful", "web", "http"]
|
|
license = "EPL-2.0 OR Apache-2.0"
|
|
repository = "https://gitlab.com/msrd0/gotham-restful"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[badges]
|
|
gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
|
|
|
[dependencies]
|
|
heck = "0.3.1"
|
|
proc-macro2 = "1.0.13"
|
|
quote = "1.0.6"
|
|
syn = { version = "1.0.22", features = ["full"] }
|
|
|
|
[features]
|
|
default = []
|
|
auth = []
|
|
database = []
|
|
openapi = []
|