1 | [package] |
2 | name = "lyon_path" |
3 | version = "1.0.4" |
4 | description = "Types and utilities to store, build and iterate over 2D paths." |
5 | authors = ["Nicolas Silva <nical@fastmail.com>" ] |
6 | repository = "https://github.com/nical/lyon" |
7 | documentation = "https://docs.rs/lyon_path/" |
8 | license = "MIT OR Apache-2.0" |
9 | workspace = "../.." |
10 | edition = "2018" |
11 | |
12 | [lib] |
13 | name = "lyon_path" |
14 | |
15 | [features] |
16 | default = ["std" ] |
17 | std = ["lyon_geom/std" , "num-traits/std" ] |
18 | serialization = ["serde" , "lyon_geom/serialization" ] |
19 | |
20 | [dependencies] |
21 | lyon_geom = { version = "1.0.4" , path = "../geom" , default-features = false } |
22 | num-traits = { version = "0.2.15" , default-features = false, features = ["libm" ] } |
23 | serde = { version = "1.0" , optional = true, features = ["serde_derive" ], default-features = false } |
24 | |