catgirl-cooking/Cargo.toml

29 lines
898 B
TOML
Raw Permalink Normal View History

2022-01-23 18:40:13 +00:00
[package]
2022-02-07 22:23:13 +00:00
name = "catgirl-cooking"
description = "Simple cooking/recipe site"
2022-01-23 18:40:13 +00:00
authors = ["Erin Nova <contact@the-system.eu.org>"]
license = "CNPLv7+"
homepage = "https://catgirl.cooking"
2022-03-05 16:36:40 +00:00
repository = "https://bytes.keithhacks.cyou/erin/catgirl-cooking"
2022-02-07 22:23:13 +00:00
version = "0.1.2"
2022-01-23 18:40:13 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true # Enable linktime optimization
codegen-units = 1
panic = "abort"
[dependencies]
build_html = "2.0.0"
uuid = { version = "1.0.0-alpha.1", features = ["v4", "serde", "fast-rng"] }
chrono = { version = "0.4", features = ["serde"] }
sled = { version = "0.34.7", features = ["compression"] }
bincode = "1.3.3"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0.132"
2022-01-23 23:48:52 +00:00
rss = "2.0.0"
2022-01-24 02:07:35 +00:00
rocket = { version = "0.5.0-rc.1", features = ["json", "secrets"] }
captcha = "0.0.8"