Skip to content

Commit

Permalink
Use unicode-segmentation from the Cargo workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
tronical committed Jan 14, 2025
1 parent 68b9dfc commit 8e6d2c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/cpp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ raw-window-handle = { version = "0.6", optional = true }

esp-backtrace = { version = "0.14.0", features = ["panic-handler", "println"], optional = true }
esp-println = { version = "0.12.0", default-features = false, features = ["uart"], optional = true }
unicode-segmentation = "1.12.0"
unicode-segmentation = { workspace = true }

[build-dependencies]
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion api/rs/slint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ log = { workspace = true, optional = true }

raw-window-handle-06 = { workspace = true, optional = true }

unicode-segmentation = "1.12.0"
unicode-segmentation = { workspace = true }

[target.'cfg(not(target_os = "android"))'.dependencies]
# FemtoVG is disabled on android because it doesn't compile without setting RUST_FONTCONFIG_DLOPEN=on
Expand Down
2 changes: 1 addition & 1 deletion internal/interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ spin_on = { workspace = true, optional = true }
raw-window-handle-06 = { workspace = true, optional = true }
itertools = { workspace = true }
smol_str = { workspace = true }
unicode-segmentation = "1.12.0"
unicode-segmentation = { workspace = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
i-slint-backend-winit = { workspace = true }
Expand Down

0 comments on commit 8e6d2c8

Please sign in to comment.