aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2026-03-07 22:58:42 +0100
committermetamuffin <metamuffin@disroot.org>2026-03-07 22:58:42 +0100
commitd1b7691adb7c40bf21053d324fdac16c544cd536 (patch)
treeeb2c1df8a5cea0ebb28e065da2189a22df6f6289
parent39345504437a01b94554b7d23dd8d1b56176fd20 (diff)
downloadjellything-d1b7691adb7c40bf21053d324fdac16c544cd536.tar
jellything-d1b7691adb7c40bf21053d324fdac16c544cd536.tar.bz2
jellything-d1b7691adb7c40bf21053d324fdac16c544cd536.tar.zst
remove unused features
-rw-r--r--common/object/src/lib.rs2
-rw-r--r--common/src/lib.rs1
-rw-r--r--database/src/lib.rs1
-rw-r--r--import/fallback_generator/src/lib.rs2
-rw-r--r--import/src/lib.rs2
-rw-r--r--server/src/main.rs2
-rw-r--r--stream/src/lib.rs1
-rw-r--r--ui/src/lib.rs1
8 files changed, 4 insertions, 8 deletions
diff --git a/common/object/src/lib.rs b/common/object/src/lib.rs
index 3be4d6f..3790730 100644
--- a/common/object/src/lib.rs
+++ b/common/object/src/lib.rs
@@ -3,7 +3,7 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
-#![feature(iter_array_chunks, strip_circumfix, phantom_variance_markers)]
+#![feature(iter_array_chunks, strip_circumfix)]
mod buffer;
pub mod debug;
diff --git a/common/src/lib.rs b/common/src/lib.rs
index 417acee..d94c72c 100644
--- a/common/src/lib.rs
+++ b/common/src/lib.rs
@@ -3,7 +3,6 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2025 metamuffin <metamuffin.org>
*/
-#![feature(phantom_variance_markers)]
pub mod api;
pub mod internal;
pub mod node;
diff --git a/database/src/lib.rs b/database/src/lib.rs
index 263c2fc..62d6073 100644
--- a/database/src/lib.rs
+++ b/database/src/lib.rs
@@ -3,7 +3,6 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
-#![feature(phantom_variance_markers)]
pub mod helper;
pub mod kv;
pub mod query_syntax;
diff --git a/import/fallback_generator/src/lib.rs b/import/fallback_generator/src/lib.rs
index d24356d..b5078ac 100644
--- a/import/fallback_generator/src/lib.rs
+++ b/import/fallback_generator/src/lib.rs
@@ -1,4 +1,4 @@
-#![feature(random, string_remove_matches)]
+#![feature(string_remove_matches)]
use ab_glyph::{FontRef, PxScale};
use anyhow::Result;
use image::{DynamicImage, ImageBuffer, ImageEncoder, Rgba, codecs::qoi::QoiEncoder};
diff --git a/import/src/lib.rs b/import/src/lib.rs
index 98f7216..40a855a 100644
--- a/import/src/lib.rs
+++ b/import/src/lib.rs
@@ -3,7 +3,7 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
-#![feature(duration_constants, exit_status_error, phantom_variance_markers)]
+#![feature(duration_constants, exit_status_error)]
pub mod helpers;
pub mod plugins;
diff --git a/server/src/main.rs b/server/src/main.rs
index 2837940..564f320 100644
--- a/server/src/main.rs
+++ b/server/src/main.rs
@@ -3,7 +3,7 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
-#![feature(int_roundings, str_as_str, duration_constructors, never_type)]
+#![feature(never_type)]
#![allow(clippy::needless_borrows_for_generic_args)]
#![recursion_limit = "4096"]
diff --git a/stream/src/lib.rs b/stream/src/lib.rs
index 801f29c..6dbc646 100644
--- a/stream/src/lib.rs
+++ b/stream/src/lib.rs
@@ -3,7 +3,6 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
-#![feature(iterator_try_collect)]
pub mod cues;
pub mod dash;
mod fragment;
diff --git a/ui/src/lib.rs b/ui/src/lib.rs
index 76e2018..b4f8d68 100644
--- a/ui/src/lib.rs
+++ b/ui/src/lib.rs
@@ -3,7 +3,6 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
-#![feature(phantom_variance_markers)]
pub mod components;
pub(crate) mod format;
mod scaffold;