Compare commits

..

1 commit

Author SHA1 Message Date
16c32f6dbe Update Rust crate quick-xml to 0.37.0
Some checks failed
Gavania Merge Build / build (pull_request) Failing after 12m36s
2025-02-27 12:05:25 +00:00
2 changed files with 2 additions and 1 deletions

View file

@ -18,3 +18,4 @@ anyhow = { version = "1.0.86", features = ["backtrace"] }
audio = { git = "https://gavania.de/hodasemi/audio.git", optional = true } audio = { git = "https://gavania.de/hodasemi/audio.git", optional = true }
[features] [features]
default = ["audio"]

View file

@ -18,7 +18,7 @@ pub trait ContextInterface: Send + Sync {
fn height(&self) -> u32; fn height(&self) -> u32;
#[cfg(feature = "audio")] #[cfg(feature = "audio")]
fn sound_handler(&mut self) -> &mut SoundHandler; fn sound_handler(&self) -> std::sync::MutexGuard<'_, SoundHandler>;
} }
pub enum TargetMode<T> { pub enum TargetMode<T> {