Skip to content

Commit 92537c4

Browse files
committed
update dependencies
1 parent f8eca69 commit 92537c4

File tree

5 files changed

+35
-97
lines changed

5 files changed

+35
-97
lines changed

Cargo.lock

Lines changed: 19 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
resolver = "2"
1313

1414
[workspace.package]
15-
version = "0.2.25"
15+
version = "0.2.26"
1616
authors = ["Raphael Amorim <[email protected]>"]
1717
edition = "2021"
1818
license = "MIT"
@@ -28,15 +28,15 @@ readme = "README.md"
2828
# Note: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations
2929
# Sugarloaf example uses path when used locally, but uses
3030
# version from crates.io when published.
31-
teletypewriter = { path = "teletypewriter", version = "0.2.25" }
32-
rio-backend = { path = "rio-backend", version = "0.2.25" }
33-
rio-window = { path = "rio-window", version = "0.2.25", default-features = false }
34-
sugarloaf = { path = "sugarloaf", version = "0.2.25" }
31+
teletypewriter = { path = "teletypewriter", version = "0.2.26" }
32+
rio-backend = { path = "rio-backend", version = "0.2.26" }
33+
rio-window = { path = "rio-window", version = "0.2.26", default-features = false }
34+
sugarloaf = { path = "sugarloaf", version = "0.2.26" }
3535

3636
# Own dependencies
37-
copa = { path = "copa", default-features = true, version = "0.2.25" }
38-
rio-proc-macros = { path = "rio-proc-macros", version = "0.2.25" }
39-
corcovado = { path = "corcovado", version = "0.2.25" }
37+
copa = { path = "copa", default-features = true, version = "0.2.26" }
38+
rio-proc-macros = { path = "rio-proc-macros", version = "0.2.26" }
39+
corcovado = { path = "corcovado", version = "0.2.26" }
4040
raw-window-handle = { version = "0.6.2", features = ["std"] }
4141
parking_lot = { version = "0.12.4", features = [
4242
"nightly",
@@ -61,7 +61,7 @@ regex = "1.11.1"
6161
bytemuck = { version = "1.23.1", features = ["derive"] }
6262
serde = { version = "1.0.219", features = ["derive"] }
6363
wgpu = "25.0.2"
64-
libc = "0.2.173"
64+
libc = "0.2.174"
6565
smol_str = "0.3.2"
6666
futures = "0.3.31"
6767
wasm-bindgen = "0.2.87"
@@ -76,7 +76,6 @@ tracing = "0.1.41"
7676
objc = { package = "objc-rs", version = "0.2.8" }
7777
memmap2 = "0.9.5"
7878
url = "2.5.4"
79-
slotmap = "1.0.7"
8079
criterion = { version = "0.6.0", features = ["html_reports"] }
8180

8281
[profile.release]

frontends/rioterm/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ futures = { workspace = true }
3232
corcovado = { workspace = true }
3333
regex = { workspace = true }
3434
raw-window-handle = { workspace = true }
35-
clap = { version = "4.5.27", features = ["derive"] }
35+
clap = { version = "4.5.42", features = ["derive"] }
3636
dirs = "6.0.0"
37-
notify = "8.0.0"
37+
notify = "8.2.0"
3838
rustc-hash = { workspace = true }
3939
image_rs = { workspace = true }
4040
libc = { workspace = true }
@@ -47,7 +47,6 @@ url = { workspace = true }
4747
smallvec = { workspace = true }
4848
rio-window = { workspace = true }
4949
lru = "0.16.0"
50-
slotmap = { workspace = true }
5150

5251
[target.'cfg(target_os = "macos")'.dependencies]
5352
objc = { workspace = true }
@@ -85,7 +84,7 @@ wayland = [
8584
[package.metadata.deb]
8685
name = "rioterm"
8786
maintainer = "Raphael Amorim <[email protected]>"
88-
copyright = "2024, Raphael Amorim <[email protected]>"
87+
copyright = "2022-present, Raphael Amorim <[email protected]>"
8988
depends = "$auto"
9089
section = "admin"
9190
priority = "optional"

frontends/rioterm/src/context/mod.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -283,12 +283,8 @@ impl<T: EventListener + Clone + std::marker::Send + 'static> ContextManager<T> {
283283
}
284284
}
285285

286-
let machine = Machine::new(
287-
Arc::clone(&terminal),
288-
pty,
289-
event_proxy.clone(),
290-
window_id,
291-
)?;
286+
let machine =
287+
Machine::new(Arc::clone(&terminal), pty, event_proxy.clone(), window_id)?;
292288
let channel = machine.channel();
293289
let io_thread = if config.spawn_performer {
294290
Some(machine.spawn())

sugarloaf/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,9 @@ raw-window-handle = { workspace = true }
4545
parking_lot = { workspace = true }
4646
approx = "0.5.1"
4747
lru = "0.16.0"
48-
skrifa = "0.33.0"
48+
skrifa = "0.33.1"
4949
halfbrown = "0.3.0"
5050
half = "2.6.0"
51-
string_cache = "0.8.7"
5251
num-traits = "0.2.19"
5352
yazi = { version = "0.2.1", optional = true }
5453
zeno = { version = "0.3.3", optional = true }
@@ -67,10 +66,8 @@ librashader-cache = "0.8.1"
6766
thiserror = "2.0.1"
6867

6968
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
70-
crossbeam-channel = "0.5.14"
71-
crossbeam-deque = "0.8.6"
7269
rayon = "1.10.0"
73-
twox-hash = { version = "2.1.0", default-features = false, features = [
70+
twox-hash = { version = "2.1.1", default-features = false, features = [
7471
"std",
7572
"xxhash64",
7673
] }

0 commit comments

Comments
 (0)