rocket-pinboard/Cargo.toml

26 lines
526 B
TOML
Raw Normal View History

2017-12-06 15:29:10 +01:00
[package]
name = "rocket-pinboard"
2018-01-03 21:10:06 +01:00
version = "1.0.1"
2017-12-06 15:29:10 +01:00
authors = ["Paul van Tilburg <paul@luon.net>"]
description = """
A web application (based on Rocket) for maintaining a pinboard of notes for
a family or group of friends.
"""
readme = "README.md"
license = "MIT"
2017-12-06 15:29:10 +01:00
[dependencies]
2020-02-03 21:17:09 +01:00
comrak = "0.7.0"
glob = "0.2.11"
Inflector = "*"
2020-02-03 21:15:08 +01:00
rocket = "0.4.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
toml = "0.4"
2017-12-06 16:47:55 +01:00
[dependencies.rocket_contrib]
2020-02-03 21:15:08 +01:00
version = "0.4.2"
2017-12-06 16:47:55 +01:00
default-features = false
2020-02-03 21:15:08 +01:00
features = ["json", "tera_templates"]