| 1 | [package] |
| 2 | name = "tiny-skia-path" |
| 3 | version = "0.11.4" |
| 4 | authors = ["Yevhenii Reizner <razrfalcon@gmail.com>" ] |
| 5 | edition = "2018" |
| 6 | description = "A tiny-skia Bezier path implementation" |
| 7 | documentation = "https://docs.rs/tiny-skia-path/" |
| 8 | readme = "README.md" |
| 9 | repository = "https://github.com/RazrFalcon/tiny-skia/tree/master/path" |
| 10 | license = "BSD-3-Clause" |
| 11 | keywords = ["graphics" , "bezier" , "path" , "dash" , "stroke" ] |
| 12 | categories = ["graphics" ] |
| 13 | workspace = ".." |
| 14 | |
| 15 | [dependencies] |
| 16 | arrayref = "0.3.6" |
| 17 | bytemuck = "1.4" |
| 18 | libm = { version = "0.2.1" , optional = true } # float support on no_std |
| 19 | strict-num = { version = "0.1" , default-features = false } |
| 20 | |
| 21 | [features] |
| 22 | default = ["std" ] |
| 23 | |
| 24 | # Enables the use of the standard library. Deactivate this and activate the no-std-float |
| 25 | # feature to compile for targets that don't have std. |
| 26 | std = [] |
| 27 | no-std-float = ["libm" ] |
| 28 | |