aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-06-10 14:52:40 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-10 14:52:40 +0200
commitc0365c8c64f403fd9ee75c0db1a9ed6134633e8f (patch)
tree5c51567748c9bbf1b3a9da46a97f52da90cc2ebd /server
parentd7636b4707f09862577515c87007f3ac0b705ed8 (diff)
downloadjellything-c0365c8c64f403fd9ee75c0db1a9ed6134633e8f.tar
jellything-c0365c8c64f403fd9ee75c0db1a9ed6134633e8f.tar.bz2
jellything-c0365c8c64f403fd9ee75c0db1a9ed6134633e8f.tar.zst
bump versions
Diffstat (limited to 'server')
-rw-r--r--server/Cargo.toml10
-rw-r--r--server/src/main.rs4
2 files changed, 6 insertions, 8 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index 6d5ece3..5029408 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -10,15 +10,15 @@ jellystream = { path = "../stream" }
jellytranscoder = { path = "../transcoder" }
jellyimport = { path = "../import" }
-serde = { version = "1.0.197", features = ["derive"] }
+serde = { version = "1.0.203", features = ["derive"] }
bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] }
-serde_json = "1.0.115"
+serde_json = "1.0.117"
log = { workspace = true }
anyhow = { workspace = true }
env_logger = "0.11.3"
rand = "0.8.5"
-base64 = "0.22.0"
+base64 = "0.22.1"
chrono = { version = "0.4.38", features = ["serde"] }
vte = "0.13.0"
chashmap = "2.2.2"
@@ -27,10 +27,10 @@ humansize = "2.1.3"
argon2 = "0.5.3"
aes-gcm-siv = "0.11.1"
-async-recursion = "1.1.0"
+async-recursion = "1.1.1"
futures = "0.3.30"
tokio = { workspace = true }
-tokio-util = { version = "0.7.10", features = ["io", "io-util"] }
+tokio-util = { version = "0.7.11", features = ["io", "io-util"] }
markup = "0.15.0"
rocket = { workspace = true, features = ["secrets", "json"] }
diff --git a/server/src/main.rs b/server/src/main.rs
index 2cc8b98..8721e39 100644
--- a/server/src/main.rs
+++ b/server/src/main.rs
@@ -3,9 +3,7 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2024 metamuffin <metamuffin.org>
*/
-#![feature(lazy_cell)]
-#![feature(int_roundings)]
-#![feature(let_chains)]
+#![feature(int_roundings, let_chains)]
use crate::routes::ui::{account::hash_password, admin::log::enable_logging};
use anyhow::Context;