19 lines
417 B
TOML
19 lines
417 B
TOML
[package]
|
|
name = "web"
|
|
version = "0.1.0"
|
|
authors = ["artus40 <artus@landoftheunicorn.ovh>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
rocket = "0.4.0"
|
|
rocket_cors = { git = "https://github.com/lawliet89/rocket_cors", branch = "master" }
|
|
cookbook = { path = "../cookbook/" }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
|
|
|
|
[dependencies.rocket_contrib]
|
|
version = "0.4.0"
|
|
default-features = false
|
|
features = ["json", "diesel_sqlite_pool"]
|