26 lines
498 B
TOML
26 lines
498 B
TOML
[package]
|
|
name = "cosmic-text"
|
|
description = "Pure Rust multi-line text handling"
|
|
version = "0.1.4"
|
|
authors = ["Jeremy Soller <jeremy@system76.com>"]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
fontdb = "0.9.3"
|
|
log = "0.4"
|
|
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/*",
|
|
]
|