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]
|
2024-09-14 21:01:30 +02:00
|
|
|
actix-web = { version = "4.9", default-features = false, features = ["macros", "compress-brotli"] }
|
2023-02-09 00:08:31 +01:00
|
|
|
actix-files = "0.6"
|
2024-07-23 10:26:19 +02:00
|
|
|
cached = { version = "0.53", features = ["async", "ahash"] }
|
2024-04-01 18:11:46 +02:00
|
|
|
ramhorns = "1.0"
|
2023-10-15 20:58:20 +02:00
|
|
|
toml = "0.8"
|
2023-04-26 13:55:43 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-05-28 19:44:08 +02:00
|
|
|
serde_yml = "0.0"
|
2024-04-01 18:11:46 +02:00
|
|
|
serde_json = "1.0"
|
2024-01-19 16:57:10 +01:00
|
|
|
minify-html = "0.15"
|
|
|
|
minify-js = "0.6"
|
2023-04-26 13:55:43 +02:00
|
|
|
glob = "0.3"
|
2024-10-22 12:05:38 +02:00
|
|
|
comrak = "0.29"
|
2024-04-01 18:11:46 +02:00
|
|
|
reqwest = { version = "0.12", features = ["json"] }
|
2024-05-28 19:44:08 +02:00
|
|
|
chrono = { version = "0.4.38", default-features = false, features = ["clock"]}
|
2024-09-14 21:01:30 +02:00
|
|
|
chrono-tz = "0.10"
|
2023-04-26 16:51:19 +02:00
|
|
|
rss = { version = "2.0", features = ["atom"] }
|
2024-10-22 12:05:38 +02:00
|
|
|
lol_html = "2.0"
|
2024-04-01 18:11:46 +02:00
|
|
|
base64 = "0.22"
|
|
|
|
mime_guess = "2.0"
|
|
|
|
urlencoding = "2.1"
|
|
|
|
regex = "1.10"
|
2024-08-29 23:31:35 +02:00
|
|
|
cyborgtime = "2.1.1"
|
2024-05-28 20:58:41 +02:00
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
pedantic = "warn"
|