1 | [package] |
2 | name = "ab_glyph_rasterizer" |
3 | version = "0.1.8" |
4 | authors = ["Alex Butler <alexheretic@gmail.com>" ] |
5 | edition = "2018" |
6 | description = "Coverage rasterization for lines, quadratic & cubic beziers" |
7 | repository = "https://github.com/alexheretic/ab-glyph" |
8 | keywords = ["text" , "ttf" , "otf" , "font" ] |
9 | license = "Apache-2.0" |
10 | readme = "README.md" |
11 | |
12 | [dependencies] |
13 | # no_std float stuff |
14 | libm = { version = "0.2.1" , optional = true } |
15 | |
16 | [dev-dependencies] |
17 | # don't add any, instead use ./dev |
18 | |
19 | [features] |
20 | default = ["std" ] |
21 | # Activates usage of std. |
22 | std = [] |
23 | |