cosmic-text/Cargo.toml

27 lines
498 B
TOML
Raw Normal View History

2022-10-18 12:07:22 -06:00
[package]
name = "cosmic-text"
2022-10-25 12:54:21 -06:00
description = "Pure Rust multi-line text handling"
2022-10-31 11:40:01 -06:00
version = "0.3.0"
2022-10-18 12:07:22 -06:00
authors = ["Jeremy Soller <jeremy@system76.com>"]
edition = "2021"
2022-10-24 08:56:48 -06:00
license = "MIT OR Apache-2.0"
2022-10-18 12:07:22 -06:00
[dependencies]
2022-10-26 11:12:05 -06:00
fontdb = "0.9.3"
2022-10-18 12:07:22 -06:00
log = "0.4"
rustybuzz = "0.5"
swash = { version = "0.1", optional = true }
2022-10-18 12:07:22 -06:00
sys-locale = "0.2"
unicode-bidi = "0.3"
unicode-linebreak = "0.1"
2022-10-18 12:07:22 -06:00
unicode-script = "0.5"
2022-10-24 14:27:26 -06:00
unicode-segmentation = "1.7"
2022-10-18 12:07:22 -06:00
[features]
default = ["swash"]
2022-10-18 12:07:22 -06:00
[workspace]
members = [
2022-10-18 13:32:50 -06:00
"examples/*",
2022-10-18 12:07:22 -06:00
]