mylloon.fr/Cargo.toml

28 lines
804 B
TOML
Raw Normal View History

2023-02-02 11:06:27 +01:00
[package]
2023-02-09 09:25:03 +01:00
name = "ewp" # Easy Web Page
2023-02-02 11:06:27 +01:00
version = "0.1.0"
authors = ["Mylloon"]
edition = "2021"
description = "Webpage generator"
readme = "README.md"
2023-02-09 09:25:03 +01:00
repository = "https://git.mylloon.fr/Anri/mylloon.fr"
2023-02-02 11:06:27 +01:00
publish = false
2023-02-15 15:39:13 +01:00
license = "AGPL-3.0-or-later"
2023-02-02 11:06:27 +01:00
[dependencies]
actix-web = { version = "4.4", default-features = false, features = ["macros", "compress-brotli"] }
actix-files = "0.6"
cached = { version = "0.46", features = ["async"] }
2023-04-26 13:55:43 +02:00
ramhorns = "0.14"
toml = "0.8"
2023-04-26 13:55:43 +02:00
serde = { version = "1.0", features = ["derive"] }
2023-04-10 19:16:25 +02:00
serde_yaml = "0.9"
2023-05-23 10:07:09 +02:00
minify-html = "0.11"
2023-04-26 13:55:43 +02:00
minify-js = "0.5"
glob = "0.3"
comrak = "0.19"
2023-04-11 11:31:01 +02:00
reqwest = { version = "0.11", features = ["json"] }
chrono = { version = "0.4.30", default-features = false, features = ["clock"]}
2023-04-26 13:55:43 +02:00
chrono-tz = "0.8"
2023-04-26 16:51:19 +02:00
rss = { version = "2.0", features = ["atom"] }