mirror of https://github.com/Tim-Paik/srv.git
update deps
This commit is contained in:
parent
2381628fc4
commit
dc598b05ff
File diff suppressed because it is too large
Load Diff
14
Cargo.toml
14
Cargo.toml
|
@ -7,13 +7,13 @@ version = "1.1.0"
|
|||
|
||||
[dependencies]
|
||||
actix-files = "0.6"
|
||||
actix-web = { version = "4.1", features = ["rustls"] }
|
||||
actix-web = { version = "4.3", features = ["rustls"] }
|
||||
actix-web-httpauth = "0.8"
|
||||
askama = "0.11"
|
||||
askama_actix = "0.13"
|
||||
clap = { version = "4.0", features = ["derive", "wrap_help", "color", "cargo"] }
|
||||
comrak = { version = "0.17.0", default-features = false }
|
||||
env_logger = "0.9"
|
||||
askama = "0.12"
|
||||
askama_actix = "0.14"
|
||||
clap = { version = "4.3", features = ["derive", "wrap_help", "color", "cargo"] }
|
||||
comrak = { version = "0.18", default-features = false }
|
||||
env_logger = "0.10"
|
||||
log = "0.4"
|
||||
mime_guess = "2.0"
|
||||
rustls = "0.20"
|
||||
|
@ -21,7 +21,7 @@ rustls-pemfile = "1.0"
|
|||
serde = { version = "1.0", features = ["derive"] }
|
||||
sha2 = "0.10"
|
||||
time = { version = "0.3", features = ["formatting", "parsing"] }
|
||||
toml = "0.5"
|
||||
toml = "0.7"
|
||||
urlencoding = "2.1"
|
||||
|
||||
[profile.release]
|
||||
|
|
|
@ -179,6 +179,7 @@ fn render_index(
|
|||
parse: comrak::ComrakParseOptions {
|
||||
smart: false,
|
||||
default_info_string: None,
|
||||
relaxed_tasklist_matching: true,
|
||||
},
|
||||
render: comrak::ComrakRenderOptions {
|
||||
hardbreaks: false,
|
||||
|
@ -187,6 +188,8 @@ fn render_index(
|
|||
unsafe_: true,
|
||||
escape: false,
|
||||
list_style: comrak::ListStyleType::default(),
|
||||
full_info_string: true,
|
||||
sourcepos: false,
|
||||
},
|
||||
},
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue