1[package]
2name = "tiny-skia-path"
3version = "0.11.4"
4authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
5edition = "2018"
6description = "A tiny-skia Bezier path implementation"
7documentation = "https://docs.rs/tiny-skia-path/"
8readme = "README.md"
9repository = "https://github.com/RazrFalcon/tiny-skia/tree/master/path"
10license = "BSD-3-Clause"
11keywords = ["graphics", "bezier", "path", "dash", "stroke"]
12categories = ["graphics"]
13workspace = ".."
14
15[dependencies]
16arrayref = "0.3.6"
17bytemuck = "1.4"
18libm = { version = "0.2.1", optional = true } # float support on no_std
19strict-num = { version = "0.1", default-features = false }
20
21[features]
22default = ["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.
26std = []
27no-std-float = ["libm"]
28