diff options
author | 2024-10-03 22:27:25 -0500 | |
---|---|---|
committer | 2025-01-06 22:56:48 +0100 | |
commit | 0e8c3fe30fd7c9a9ff54d2f6d75324575df5511a (patch) | |
tree | a0d28dac23fef014f602ddd7eafe1ef1eea39d9f /graphics | |
parent | b156087fcf10011b2ee53c74198ba9fc443a1caa (diff) | |
download | iced-0e8c3fe30fd7c9a9ff54d2f6d75324575df5511a.tar.gz iced-0e8c3fe30fd7c9a9ff54d2f6d75324575df5511a.tar.bz2 iced-0e8c3fe30fd7c9a9ff54d2f6d75324575df5511a.zip |
chore: remove once_cell dependency
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/Cargo.toml | 1 | ||||
-rw-r--r-- | graphics/src/text.rs | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml index 7e2d767b..43191a59 100644 --- a/graphics/Cargo.toml +++ b/graphics/Cargo.toml @@ -33,7 +33,6 @@ bytemuck.workspace = true cosmic-text.workspace = true half.workspace = true log.workspace = true -once_cell.workspace = true raw-window-handle.workspace = true rustc-hash.workspace = true thiserror.workspace = true diff --git a/graphics/src/text.rs b/graphics/src/text.rs index ca3fc6fc..7694ff1f 100644 --- a/graphics/src/text.rs +++ b/graphics/src/text.rs @@ -14,10 +14,9 @@ use crate::core::font::{self, Font}; use crate::core::text::{Shaping, Wrapping}; use crate::core::{Color, Pixels, Point, Rectangle, Size, Transformation}; -use once_cell::sync::OnceCell; use std::borrow::Cow; use std::collections::HashSet; -use std::sync::{Arc, RwLock, Weak}; +use std::sync::{Arc, OnceLock, RwLock, Weak}; /// A text primitive. #[derive(Debug, Clone, PartialEq)] @@ -157,7 +156,7 @@ pub const FIRA_SANS_REGULAR: &[u8] = /// Returns the global [`FontSystem`]. pub fn font_system() -> &'static RwLock<FontSystem> { - static FONT_SYSTEM: OnceCell<RwLock<FontSystem>> = OnceCell::new(); + static FONT_SYSTEM: OnceLock<RwLock<FontSystem>> = OnceLock::new(); FONT_SYSTEM.get_or_init(|| { RwLock::new(FontSystem { |