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