0.2.0-beta dark mode, organize css, no index support, some icon and 500 error handle

This commit is contained in:
2021-08-16 01:23:54 +08:00
parent 61ae8af122
commit 77103c6670
4 changed files with 303 additions and 78 deletions

22
Cargo.lock generated
View File

@ -849,6 +849,16 @@ version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]]
name = "mime_guess"
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
dependencies = [
"mime",
"unicase",
]
[[package]]
name = "mio"
version = "0.6.23"
@ -2055,6 +2065,15 @@ dependencies = [
"unic-common",
]
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
[[package]]
name = "unicode-segmentation"
version = "1.8.0"
@ -2174,12 +2193,13 @@ checksum = "d7cff876b8f18eed75a66cf49b65e7f967cb354a7aa16003fb55dbfd25b44b4f"
[[package]]
name = "web"
version = "0.1.9-beta"
version = "0.2.0-beta"
dependencies = [
"chrono",
"clap",
"colored",
"lazy_static",
"mime_guess",
"rocket",
"rocket_dyn_templates",
]