Skip to content

Commit f5d5b4d

Browse files
committed
yup v0.4
1 parent 448ba52 commit f5d5b4d

2 files changed

Lines changed: 10 additions & 12 deletions

File tree

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
resolver = "2"
1515

1616
[workspace.package]
17-
version = "0.3.12"
17+
version = "0.4.0"
1818
authors = ["Raphael Amorim <rapha850@gmail.com>"]
1919
edition = "2021"
2020
license = "MIT"
@@ -30,17 +30,17 @@ readme = "README.md"
3030
# Note: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations
3131
# Sugarloaf example uses path when used locally, but uses
3232
# version from crates.io when published.
33-
teletypewriter = { path = "teletypewriter", version = "0.3.12" }
34-
rio-backend = { path = "rio-backend", version = "0.3.12" }
35-
rio-window = { path = "rio-window", version = "0.3.12", default-features = false }
36-
rio-notifier = { path = "rio-notifier", version = "0.3.12" }
37-
rio-grapheme-width = { path = "rio-grapheme-width", version = "0.3.12" }
38-
sugarloaf = { path = "sugarloaf", version = "0.3.12" }
33+
teletypewriter = { path = "teletypewriter", version = "0.4.0" }
34+
rio-backend = { path = "rio-backend", version = "0.4.0" }
35+
rio-window = { path = "rio-window", version = "0.4.0", default-features = false }
36+
rio-notifier = { path = "rio-notifier", version = "0.4.0" }
37+
rio-grapheme-width = { path = "rio-grapheme-width", version = "0.4.0" }
38+
sugarloaf = { path = "sugarloaf", version = "0.4.0" }
3939

4040
# Own dependencies
41-
copa = { path = "copa", default-features = true, version = "0.3.12" }
42-
rio-proc-macros = { path = "rio-proc-macros", version = "0.3.12" }
43-
corcovado = { path = "corcovado", version = "0.3.12" }
41+
copa = { path = "copa", default-features = true, version = "0.4.0" }
42+
rio-proc-macros = { path = "rio-proc-macros", version = "0.4.0" }
43+
corcovado = { path = "corcovado", version = "0.4.0" }
4444
raw-window-handle = { version = "0.6.2", features = ["std"] }
4545
parking_lot = { version = "0.12.5", features = [
4646
"nightly",

sugarloaf/src/sugarloaf.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ pub struct Sugarloaf<'a> {
4848
text: crate::text::Text,
4949
/// Per-panel (rich_text_id) image overlays. Driven by the kitty
5050
/// graphics frontend path; read by the renderer's image pass.
51-
/// Replaces the old `BuilderState.image_overlays` storage — keeps
52-
/// panel overlays alive while the Content system is stripped.
5351
pub image_overlays:
5452
rustc_hash::FxHashMap<usize, Vec<crate::sugarloaf::graphics::GraphicOverlay>>,
5553
}

0 commit comments

Comments
 (0)