1
Fork 0
bauke-xyz/Cargo.toml

38 lines
734 B
TOML
Raw Normal View History

2021-08-26 15:52:13 +00:00
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "bauke-xyz"
2022-09-25 22:56:32 +00:00
description = "Bauke's website."
repository = "https://git.bauke.xyz/Bauke/bauke-xyz"
2021-08-26 15:52:13 +00:00
license = "AGPL-3.0-or-later"
2022-09-25 22:56:32 +00:00
version = "1.0.0"
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
2021-08-26 15:52:13 +00:00
[[bin]]
name = "bauke-xyz"
path = "source/main.rs"
[dependencies]
2024-01-15 15:31:42 +00:00
askama = "0.12.1"
2022-09-25 22:56:32 +00:00
color-eyre = "0.6.2"
2024-01-15 15:31:42 +00:00
comrak = "0.20.0"
minify-html = "0.15.0"
2022-03-28 12:05:26 +00:00
rsass = "0.23.4"
toml-frontmatter = "0.1.0"
2023-01-04 13:43:46 +00:00
[dependencies.serde]
features = ["derive"]
version = "1.0.152"
2022-10-03 23:03:55 +00:00
[dependencies.userstyles]
git = "https://git.bauke.xyz/Bauke/userstyles"
rev = "8aa9ad3"
[lints.clippy]
missing_docs_in_private_items = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"