aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-09-06 13:44:55 +0200
committermetamuffin <metamuffin@disroot.org>2023-09-06 13:44:55 +0200
commit2ceff639ceca3961e644e5291b654107409d298f (patch)
treeef40f7dd8d3db5dfa5e8afb345d663f86139815d /server
parent8ef86fed3d084b1fcaae2d52aa5d603faeb18161 (diff)
downloadjellything-2ceff639ceca3961e644e5291b654107409d298f.tar
jellything-2ceff639ceca3961e644e5291b654107409d298f.tar.bz2
jellything-2ceff639ceca3961e644e5291b654107409d298f.tar.zst
update deps and fix compiler hang on rav1e
Diffstat (limited to 'server')
-rw-r--r--server/Cargo.toml18
-rw-r--r--server/src/routes/ui/account/session/mod.rs3
-rw-r--r--server/src/routes/ui/sort.rs2
3 files changed, 11 insertions, 12 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index 8938768..15b2bd0 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -10,25 +10,25 @@ jellyremuxer = { path = "../remuxer" }
jellyclient = { path = "../client" }
jellytranscoder = { path = "../transcoder" }
-serde = { version = "1.0.182", features = ["derive"] }
+serde = { version = "1.0.188", features = ["derive"] }
bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] }
-serde_json = "1.0.104"
+serde_json = "1.0.105"
-log = "0.4.19"
+log = "0.4.20"
env_logger = "0.10.0"
-anyhow = "1.0.72"
+anyhow = "1.0.75"
rand = "0.8.5"
-base64 = "0.21.2"
-chrono = { version = "0.4.26", features = ["serde"] }
+base64 = "0.21.3"
+chrono = { version = "0.4.29", features = ["serde"] }
vte = "0.11.1"
-argon2 = "0.5.1"
+argon2 = "0.5.2"
aes-gcm-siv = "0.11.1"
async-std = "1.12.0"
-async-recursion = "1.0.4"
+async-recursion = "1.0.5"
futures = "0.3.28"
-tokio = { version = "1.29.1", features = ["io-util"] }
+tokio = { version = "1.32.0", features = ["io-util"] }
tokio-util = { version = "0.7.8", features = ["io", "io-util"] }
markup = "0.13.1"
diff --git a/server/src/routes/ui/account/session/mod.rs b/server/src/routes/ui/account/session/mod.rs
index 89592c3..b13f157 100644
--- a/server/src/routes/ui/account/session/mod.rs
+++ b/server/src/routes/ui/account/session/mod.rs
@@ -3,11 +3,10 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2023 metamuffin <metamuffin.org>
*/
+use crate::database::User;
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
-use crate::database::User;
-
pub mod guard;
pub mod token;
diff --git a/server/src/routes/ui/sort.rs b/server/src/routes/ui/sort.rs
index 3748a44..da5061d 100644
--- a/server/src/routes/ui/sort.rs
+++ b/server/src/routes/ui/sort.rs
@@ -25,7 +25,7 @@ enum SortProperty {
}
impl SortProperty {
- const ALL: &[(SortProperty, &'static str)] = {
+ const ALL: &'static [(SortProperty, &'static str)] = {
use SortProperty::*;
&[
(Title, "Title"),