aboutsummaryrefslogtreecommitdiff
path: root/src/api/web.rs
diff options
context:
space:
mode:
authorBlackDex <[email protected]>2022-12-01 17:18:29 +0100
committerBlackDex <[email protected]>2022-12-04 18:38:46 +0100
commit610b183cef5111ea51aaf7e85e58baf779610fc1 (patch)
treedb19627b55d9494e208bd573c8e24b2792b0befe /src/api/web.rs
parent8feed2916fee7a06e82e6df5070a9c4ee042bcd0 (diff)
downloadvaultwarden-610b183cef5111ea51aaf7e85e58baf779610fc1.tar.gz
vaultwarden-610b183cef5111ea51aaf7e85e58baf779610fc1.zip
Update dependencies for Rust and Admin interface.
- Updated Rust deps and one small change regarding chrono - Updated bootstrap 5 css - Updated datatables - Replaced identicon.js with jdenticon. identicon.js is unmaintained ( https://github.com/stewartlord/identicon.js/issues/52 ) The icon's are very different, but nice. It also doesn't need custom code to find and update the icons our selfs.
Diffstat (limited to 'src/api/web.rs')
-rw-r--r--src/api/web.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/web.rs b/src/api/web.rs
index cfc4b9e0..e5485123 100644
--- a/src/api/web.rs
+++ b/src/api/web.rs
@@ -98,7 +98,7 @@ pub fn static_files(filename: String) -> Result<(ContentType, &'static [u8]), Er
"vaultwarden-icon.png" => Ok((ContentType::PNG, include_bytes!("../static/images/vaultwarden-icon.png"))),
"bootstrap.css" => Ok((ContentType::CSS, include_bytes!("../static/scripts/bootstrap.css"))),
"bootstrap-native.js" => Ok((ContentType::JavaScript, include_bytes!("../static/scripts/bootstrap-native.js"))),
- "identicon.js" => Ok((ContentType::JavaScript, include_bytes!("../static/scripts/identicon.js"))),
+ "jdenticon.js" => Ok((ContentType::JavaScript, include_bytes!("../static/scripts/jdenticon.js"))),
"datatables.js" => Ok((ContentType::JavaScript, include_bytes!("../static/scripts/datatables.js"))),
"datatables.css" => Ok((ContentType::CSS, include_bytes!("../static/scripts/datatables.css"))),
"jquery-3.6.1.slim.js" => {