cosmic-text/Cargo.toml
Ian Douglas Scott 0d3fb1dd9d Use ouroboros in FontSystem to avoid lifetime bound
Perhaps not quite what ouroboros is expected to be used for, but it's
not too bad, and avoiding the lifetime bound can be a huge help.
2022-11-04 10:37:32 -06:00

27 lines
519 B
TOML

[package]
name = "cosmic-text"
description = "Pure Rust multi-line text handling"
version = "0.3.0"
authors = ["Jeremy Soller <jeremy@system76.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
fontdb = "0.9.3"
log = "0.4"
ouroboros = "0.15.5"
rustybuzz = "0.5"
swash = { version = "0.1", optional = true }
sys-locale = "0.2"
unicode-bidi = "0.3"
unicode-linebreak = "0.1"
unicode-script = "0.5"
unicode-segmentation = "1.7"
[features]
default = ["swash"]
[workspace]
members = [
"examples/*",
]