1 | [package] |
2 | name = "lyon_algorithms" |
3 | version = "1.0.4" |
4 | description = "2D Path manipulation/transformation algorithms." |
5 | authors = ["Nicolas Silva <nical@fastmail.com>" ] |
6 | repository = "https://github.com/nical/lyon" |
7 | documentation = "https://docs.rs/lyon_algorithms/" |
8 | keywords = ["2d" , "graphics" , "svg" ] |
9 | license = "MIT OR Apache-2.0" |
10 | workspace = "../.." |
11 | edition = "2018" |
12 | exclude = [".backup*" ] |
13 | |
14 | [lib] |
15 | name = "lyon_algorithms" |
16 | path = "src/lib.rs" |
17 | |
18 | [features] |
19 | default = ["std" ] |
20 | std = ["lyon_path/std" , "num-traits/std" ] |
21 | serialization = ["serde" , "lyon_path/serialization" ] |
22 | |
23 | [dependencies] |
24 | lyon_path = { version = "1.0.2" , path = "../path" , default-features = false } |
25 | num-traits = { version = "0.2.15" , default-features = false, features = ["libm" ] } |
26 | serde = { version = "1.0" , optional = true, features = ["serde_derive" ], default-features = false } |
27 | |