cosmic-text/Cargo.toml
Hugo Osvaldo Barrera ae25b6c1b9 Add links to repo and docs in Cargo.toml
This will add a link to the repository in docs.rs, and both links to
crates.io.
2022-11-04 12:46:57 -06:00

29 lines
638 B
TOML

[package]
name = "cosmic-text"
description = "Pure Rust multi-line text handling"
version = "0.4.0"
authors = ["Jeremy Soller <jeremy@system76.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/cosmic-text/latest/cosmic_text/"
repository = "https://github.com/pop-os/cosmic-text"
[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/*",
]