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]
|
2023-02-08 20:49:05 +01:00
|
|
|
actix-web = "4"
|
2023-02-09 00:08:31 +01:00
|
|
|
actix-files = "0.6"
|
2023-04-11 10:45:25 +02:00
|
|
|
cached = "0.42.0"
|
2023-04-09 19:02:06 +02:00
|
|
|
ramhorns = "0.14.0"
|
2023-04-09 14:48:52 +02:00
|
|
|
toml = "0.7.3"
|
|
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
2023-04-10 19:16:25 +02:00
|
|
|
serde_yaml = "0.9"
|
2023-02-09 00:08:31 +01:00
|
|
|
minify-html = "0.10.8"
|
|
|
|
glob = "0.3.1"
|
2023-04-10 18:59:30 +02:00
|
|
|
markdown = "1.0.0-alpha.7"
|
|
|
|
latex2mathml = "0.2.3"
|
2023-04-11 11:31:01 +02:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|