chore: bump mesh-text crate version and remove unneeded fd

Signed-off-by: Schmarni <marnistromer@gmail.com>
This commit is contained in:
Schmarni
2025-10-01 10:21:08 +02:00
parent 6678681c2c
commit 75bdb44371
2 changed files with 4 additions and 6 deletions

View File

@@ -15,7 +15,6 @@ use waynest_server::Client as _;
#[waynest(error = crate::wayland::WaylandError, connection = crate::wayland::Client)]
pub struct ShmPool {
inner: Mutex<memmap2::MmapMut>,
fd: OwnedFd,
id: ObjectId,
}
@@ -30,7 +29,6 @@ impl ShmPool {
Ok(Self {
inner: Mutex::new(map),
fd,
id,
})
}