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

8
Cargo.lock generated
View File

@@ -585,7 +585,7 @@ dependencies = [
[[package]] [[package]]
name = "bevy-mesh-text-3d" name = "bevy-mesh-text-3d"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/Schmarni-Dev/bevy-mesh-text-3d#a151272ce771c6856811bb21bff41e46b72b90a3" source = "git+https://github.com/Schmarni-Dev/bevy-mesh-text-3d#14627e4ed78fb0a6ac7405780dc55b2d58da8ff6"
dependencies = [ dependencies = [
"bevy", "bevy",
"cosmic-text 0.14.2", "cosmic-text 0.14.2",
@@ -3500,7 +3500,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"windows-targets 0.48.5", "windows-targets 0.53.2",
] ]
[[package]] [[package]]
@@ -4041,7 +4041,7 @@ version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
dependencies = [ dependencies = [
"proc-macro-crate 3.3.0", "proc-macro-crate 1.3.1",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.104", "syn 2.0.104",
@@ -6185,7 +6185,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69fff37da548239c3bf9e64a12193d261e8b22b660991c6fd2df057c168f435f" checksum = "69fff37da548239c3bf9e64a12193d261e8b22b660991c6fd2df057c168f435f"
dependencies = [ dependencies = [
"cc", "cc",
"windows-targets 0.48.5", "windows-targets 0.52.6",
] ]
[[package]] [[package]]

View File

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