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