9 Commits
v1.1.0 ... main

Author SHA1 Message Date
dc598b05ff update deps 2023-07-17 18:15:43 +08:00
2381628fc4 Merge pull request #6 from Tim-Paik/dependabot/cargo/h2-0.3.17
Bump h2 from 0.3.15 to 0.3.17
2023-04-14 01:11:16 +08:00
93a2457ad6 Bump h2 from 0.3.15 to 0.3.17
Bumps [h2](https://github.com/hyperium/h2) from 0.3.15 to 0.3.17.
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hyperium/h2/compare/v0.3.15...v0.3.17)

---
updated-dependencies:
- dependency-name: h2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-13 17:03:44 +00:00
eabccd2c43 Merge pull request #5 from Tim-Paik/dependabot/cargo/comrak-0.17.0
Bump comrak from 0.14.0 to 0.17.0
2023-03-28 22:49:05 +08:00
49c9a6d128 Bump comrak from 0.14.0 to 0.17.0
Bumps [comrak](https://github.com/kivikakk/comrak) from 0.14.0 to 0.17.0.
- [Release notes](https://github.com/kivikakk/comrak/releases)
- [Changelog](https://github.com/kivikakk/comrak/blob/main/changelog.txt)
- [Commits](https://github.com/kivikakk/comrak/compare/0.14.0...0.17.0)

---
updated-dependencies:
- dependency-name: comrak
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-28 14:42:08 +00:00
d2a1eedfbb Merge pull request #4 from Tim-Paik/dependabot/cargo/tokio-1.25.0
Bump tokio from 1.24.1 to 1.25.0
2023-02-07 11:39:28 +08:00
931ac2707f Bump tokio from 1.24.1 to 1.25.0
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.24.1 to 1.25.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.24.1...tokio-1.25.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-04 00:57:42 +00:00
9ad17590a1 Merge pull request #3 from Tim-Paik/dependabot/cargo/tokio-1.24.1
Bump tokio from 1.21.2 to 1.24.1
2023-01-08 14:16:35 +08:00
29647d06c1 Bump tokio from 1.21.2 to 1.24.1
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.21.2 to 1.24.1.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.21.2...tokio-1.24.1)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-06 21:51:56 +00:00
3 changed files with 586 additions and 460 deletions

1029
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -7,13 +7,13 @@ version = "1.1.0"
[dependencies] [dependencies]
actix-files = "0.6" actix-files = "0.6"
actix-web = { version = "4.1", features = ["rustls"] } actix-web = { version = "4.3", features = ["rustls"] }
actix-web-httpauth = "0.8" actix-web-httpauth = "0.8"
askama = "0.11" askama = "0.12"
askama_actix = "0.13" askama_actix = "0.14"
clap = { version = "4.0", features = ["derive", "wrap_help", "color", "cargo"] } clap = { version = "4.3", features = ["derive", "wrap_help", "color", "cargo"] }
comrak = { version = "0.14.0", default-features = false } comrak = { version = "0.18", default-features = false }
env_logger = "0.9" env_logger = "0.10"
log = "0.4" log = "0.4"
mime_guess = "2.0" mime_guess = "2.0"
rustls = "0.20" rustls = "0.20"
@ -21,7 +21,7 @@ rustls-pemfile = "1.0"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10" sha2 = "0.10"
time = { version = "0.3", features = ["formatting", "parsing"] } time = { version = "0.3", features = ["formatting", "parsing"] }
toml = "0.5" toml = "0.7"
urlencoding = "2.1" urlencoding = "2.1"
[profile.release] [profile.release]

View File

@ -179,6 +179,7 @@ fn render_index(
parse: comrak::ComrakParseOptions { parse: comrak::ComrakParseOptions {
smart: false, smart: false,
default_info_string: None, default_info_string: None,
relaxed_tasklist_matching: true,
}, },
render: comrak::ComrakRenderOptions { render: comrak::ComrakRenderOptions {
hardbreaks: false, hardbreaks: false,
@ -187,6 +188,8 @@ fn render_index(
unsafe_: true, unsafe_: true,
escape: false, escape: false,
list_style: comrak::ListStyleType::default(), list_style: comrak::ListStyleType::default(),
full_info_string: true,
sourcepos: false,
}, },
}, },
); );