- Set correct rust-version to 1.89
- Update all dependencies to latest versions
This commit is contained in:
Jeremy Soller 2026-01-30 15:57:17 -07:00
parent bdd6657fd7
commit ae8f1c0737
No known key found for this signature in database
GPG key ID: 670FDFB5428E05CA
2 changed files with 16 additions and 6 deletions

View file

@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.17.1] - 2026-01-29
### Fixed
- Set correct rust-version to 1.89
### Changed
- Update all dependencies to latest versions
## [0.17.0] - 2026-01-29 ## [0.17.0] - 2026-01-29
### Fixed ### Fixed

View file

@ -1,29 +1,29 @@
[package] [package]
name = "cosmic-text" name = "cosmic-text"
description = "Pure Rust multi-line text handling" description = "Pure Rust multi-line text handling"
version = "0.17.0" version = "0.17.1"
authors = ["Jeremy Soller <jeremy@system76.com>"] authors = ["Jeremy Soller <jeremy@system76.com>"]
edition = "2021" edition = "2021"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/cosmic-text/latest/cosmic_text/" documentation = "https://docs.rs/cosmic-text/latest/cosmic_text/"
repository = "https://github.com/pop-os/cosmic-text" repository = "https://github.com/pop-os/cosmic-text"
rust-version = "1.80" rust-version = "1.89"
[dependencies] [dependencies]
bitflags = "2.10.0" bitflags = "2.10.0"
core_maths = { version = "0.1.1", optional = true } core_maths = { version = "0.1.1", optional = true }
cosmic_undo_2 = { version = "0.2.0", optional = true } cosmic_undo_2 = { version = "0.2.0", optional = true }
fontdb = { version = "0.23", default-features = false } fontdb = { version = "0.23", default-features = false }
harfrust = { version = "0.2.1", default-features = false } harfrust = { version = "0.5.0", default-features = false }
hashbrown = { version = "0.16", optional = true, default-features = false } hashbrown = { version = "0.16", optional = true, default-features = false }
libm = { version = "0.2.16", optional = true } libm = { version = "0.2.16", optional = true }
linebender_resource_handle = { version = "0.1.1", default-features = false } linebender_resource_handle = { version = "0.1.1", default-features = false }
log = "0.4.29" log = "0.4.29"
modit = { version = "0.1.5", optional = true } modit = { version = "0.1.5", optional = true }
rangemap = "1.6.0" rangemap = "1.7.1"
rustc-hash = { version = "2.1.1", default-features = false } rustc-hash = { version = "2.1.1", default-features = false }
self_cell = "1.2.2" self_cell = "1.2.2"
skrifa = { version = "0.36.0", default-features = false } skrifa = { version = "0.40.0", default-features = false }
smol_str = { version = "0.3.2", default-features = false } smol_str = { version = "0.3.2", default-features = false }
syntect = { version = "5.3.0", optional = true } syntect = { version = "5.3.0", optional = true }
sys-locale = { version = "0.3.2", optional = true } sys-locale = { version = "0.3.2", optional = true }
@ -76,7 +76,7 @@ members = ["examples/*"]
[dev-dependencies] [dev-dependencies]
tiny-skia = "0.11.4" tiny-skia = "0.11.4"
criterion = { version = "0.7.0", default-features = false, features = [ criterion = { version = "0.8.1", default-features = false, features = [
"cargo_bench_support", "cargo_bench_support",
] } ] }