1[package]
2name = "rustybuzz"
3version = "0.13.0"
4authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
5edition = "2018"
6description = "A complete harfbuzz shaping algorithm port to Rust."
7documentation = "https://docs.rs/rustybuzz/"
8readme = "README.md"
9repository = "https://github.com/RazrFalcon/rustybuzz"
10license = "MIT"
11keywords = ["text", "shaping", "opentype", "truetype"]
12categories = ["text-processing"]
13exclude = ["benches/", "tests/"]
14
15[dependencies]
16bitflags = "2.4.1"
17bytemuck = { version = "1.5", features = ["extern_crate_alloc"] }
18smallvec = "1.6"
19unicode-bidi-mirroring = "0.2"
20unicode-ccc = "0.2"
21unicode-properties = { version = "0.1.0", default-features = false, features = ["general-category"] }
22unicode-script = "0.5.2"
23libm = { version = "0.2.2", optional = true }
24
25[dependencies.ttf-parser]
26version = "0.20.0"
27default-features = false
28features = [
29 "opentype-layout",
30 "apple-layout",
31 "variable-fonts",
32 "glyph-names",
33]
34
35[features]
36default = ["std"]
37std = []
38
39[dev-dependencies]
40pico-args = { version = "0.5", features = ["eq-separator"] }
41libc = "0.2"
42