mirror of
https://gitlab.com/msrd0/gotham-restful.git
synced 2025-02-23 04:52:28 +00:00
28 lines
932 B
TOML
28 lines
932 B
TOML
# -*- eval: (cargo-minor-mode 1) -*-
|
|
|
|
[package]
|
|
name = "example"
|
|
version = "0.0.1"
|
|
authors = ["Dominic Meiser <git@msrd0.de>"]
|
|
edition = "2018"
|
|
license = "Unlicense"
|
|
readme = "README.md"
|
|
include = ["src/**/*", "Cargo.toml", "LICENSE"]
|
|
repository = "https://gitlab.com/msrd0/gotham-restful"
|
|
|
|
[badges]
|
|
gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
|
|
|
[dependencies]
|
|
fake = "2.2"
|
|
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", default-features = false }
|
|
gotham_restful = { version = "0.0.3", features = ["auth", "openapi"] }
|
|
log = "0.4"
|
|
log4rs = { version = "0.8", features = ["console_appender"], default-features = false }
|
|
serde = "1"
|
|
|
|
[dev-dependencies]
|
|
fake = "2.2"
|
|
log = "0.4"
|
|
log4rs = { version = "0.8", features = ["console_appender"], default-features = false }
|