forked from redox-os/rusttype
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 792 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 792 Bytes
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
[package]
name = "rusttype"
version = "0.2.1"
authors = ["Dylan Ede <dylanede@googlemail.com>"]
description = """
A pure Rust alternative to libraries like FreeType.
RustType provides an API for loading, querying and rasterising TrueType fonts.
It also provides an implementation of a dynamic GPU glyph cache for hardware font rendering.
"""
documentation = "https://dylanede.github.io/rusttype"
homepage = "https://github.com/dylanede/rusttype"
repository = "https://github.com/dylanede/rusttype"
readme = "README.md"
license = "MIT / Apache-2.0"
keywords = ["font", "truetype", "opentype", "ttf", "otf"]
exclude = ["examples/*.ttf"]
[dependencies]
arrayvec = "^0.3.13"
stb_truetype = "^0.2"
linked-hash-map = "0.0.10"
[dev-dependencies]
glium = "^0.14"
unicode-normalization = "^0.1.2"