23 lines
555 B
TOML
23 lines
555 B
TOML
[package]
|
|
name = "rocket-pinboard"
|
|
version = "1.0.1"
|
|
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"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
Inflector = "0.11.4"
|
|
comrak = "0.14.0"
|
|
glob = "0.3.0"
|
|
rocket = { version = "0.5.0-rc.2", features = ["json"] }
|
|
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["tera"] }
|
|
toml = "0.5.9"
|
|
|
|
[dev-dependencies]
|
|
serde = "1.0.145"
|
|
serde_json = "1.0.86"
|