Mylloon
9dfcc1101d
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
feat: Basic support for new `/cours` endpoint (not ready for release yet), see commit description for more - Basic /cours support - Fix LaTeX support (see #47 / cours+blog) - Better detection of when there is LaTeX in document - Don't shuffle markdown and LaTeX processing (thanks to comrak) - Macros on release - Local image support (cours+blog) - PDF support - Support of markdown files integration in other markdown files - Very basic exclusion support in toc (need a lot of improvement!!) - Update multiple dependencies (actix-web, ramhorns, comrak, reqwest, hljs) - Reformat some code - ToC in /cours support (very basic, works via building it in rust and processing it in js) - Remove very old assets (font + jspdf) - Hide navbar when printing the website - New tag in index page - Fix OCaml support for HLJS + add "pseudocode" derived from Julia Reviewed-on: #44 Co-authored-by: Mylloon <kennel.anri@tutanota.com> Co-committed-by: Mylloon <kennel.anri@tutanota.com>
33 lines
916 B
TOML
33 lines
916 B
TOML
[package]
|
|
name = "ewp" # Easy Web Page
|
|
version = "0.1.0"
|
|
authors = ["Mylloon"]
|
|
edition = "2021"
|
|
description = "Webpage generator"
|
|
readme = "README.md"
|
|
repository = "https://git.mylloon.fr/Anri/mylloon.fr"
|
|
publish = false
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
actix-web = { version = "4.5", default-features = false, features = ["macros", "compress-brotli"] }
|
|
actix-files = "0.6"
|
|
cached = { version = "0.49", features = ["async", "ahash"] }
|
|
ramhorns = "1.0"
|
|
toml = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_yml = "0.0.2"
|
|
serde_json = "1.0"
|
|
minify-html = "0.15"
|
|
minify-js = "0.6"
|
|
glob = "0.3"
|
|
comrak = "0.22"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"]}
|
|
chrono-tz = "0.8"
|
|
rss = { version = "2.0", features = ["atom"] }
|
|
lol_html = "1.2"
|
|
base64 = "0.22"
|
|
mime_guess = "2.0"
|
|
urlencoding = "2.1"
|
|
regex = "1.10"
|