forked from harfbuzz/rustybuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 1017 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "rustybuzz"
version = "0.7.0"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
edition = "2018"
description = "A complete harfbuzz shaping algorithm port to Rust."
documentation = "https://docs.rs/rustybuzz/"
readme = "README.md"
repository = "https://github.com/RazrFalcon/rustybuzz"
license = "MIT"
keywords = ["text", "shaping", "opentype", "truetype"]
categories = ["text-processing"]
exclude = ["benches/", "tests/"]
[dependencies]
bitflags = "1.2"
bytemuck = { version = "1.5", features = ["extern_crate_alloc"] }
smallvec = "1.6"
unicode-bidi-mirroring = "0.1"
unicode-ccc = "0.1.2"
unicode-general-category = "0.6"
unicode-script = "0.5.2"
libm = { version = "0.2.2", optional = true }
[dependencies.ttf-parser]
version = "0.18"
default-features = false
features = [
"opentype-layout",
"apple-layout",
"variable-fonts",
"glyph-names",
]
[features]
default = ["std"]
std = []
[dev-dependencies]
pico-args = { version = "0.5", features = ["eq-separator"] }
libc = "0.2"