forked from harfbuzz/harfbuzz_rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (20 loc) · 806 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
[package]
name = "harfbuzz_rs"
version = "1.0.0"
authors = ["Manuel Reinhardt <[email protected]>"]
description = "A high-level interface to HarfBuzz, exposing its most important functionality in a safe manner using Rust."
repository = "https://github.com/manuel-rhdt/harfbuzz_rs"
readme = "README.md"
keywords = ["text", "ffi", "textlayout", "shaping", "harfbuzz"]
categories = ["api-bindings", "external-ffi-bindings", "internationalization", "text-processing"]
license = "MIT"
edition = "2018"
[badges]
travis-ci = { repository = "manuel-rhdt/harfbuzz_rs", branch = "master" }
appveyor = { repository = "manuel-rhdt/harfbuzz_rs", branch = "master", service = "github" }
[features]
default = []
[dependencies]
harfbuzz-sys = "^0.3"
rusttype = { version = "^0.7", optional = true }
bitflags = "^1"