forked from harfbuzz/harfbuzz_rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 815 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
[package]
name = "harfbuzz_rs"
version = "2.0.2-alpha.0"
authors = ["Manuel Reinhardt <manuel.rhdt@gmail.com>"]
description = "A high-level interface to HarfBuzz, exposing its most important functionality in a safe manner using Rust."
repository = "https://github.com/harfbuzz/harfbuzz_rs"
readme = "README.md"
keywords = ["text", "ffi", "textlayout", "shaping", "harfbuzz"]
categories = [
"api-bindings",
"external-ffi-bindings",
"internationalization",
"text-processing",
]
license = "MIT"
edition = "2018"
links = "harfbuzz"
[badges]
maintainence = { status = "passively-maintained" }
[features]
default = ["build-native-harfbuzz"]
build-native-harfbuzz = []
[dependencies]
rusttype = { version = "0.9", optional = true }
bitflags = "^1"
[build-dependencies]
cc = "1.0"
pkg-config = "0.3.24"