rocket-pinboard/Cargo.toml

24 lines
555 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"
2022-10-17 19:18:35 +02:00
edition = "2021"
2017-12-06 15:29:10 +01:00
[dependencies]
2022-10-17 19:18:35 +02:00
Inflector = "0.11.4"
comrak = "0.14.0"
2020-02-03 21:17:53 +01:00
glob = "0.3.0"
2022-10-17 19:18:35 +02:00
rocket = { version = "0.5.0-rc.2", features = ["json"] }
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["tera"] }
toml = "0.5.9"
2017-12-06 16:47:55 +01:00
[dev-dependencies]
2022-10-17 19:18:35 +02:00
serde = "1.0.145"
serde_json = "1.0.86"