[package] name = "keyset-key" description = "Key type and functionality for keyset" # We don't really care about SEO for this crate, but Clippy complains if we # leave these out altogether keywords = ["keyset"] categories = ["none"] metadata.docs.rs.all-features = true version.workspace = true authors.workspace = true edition.workspace = true rust-version.workspace = true repository.workspace = true license.workspace = true [features] kle = ["kle-serial", "serde_json"] [dependencies] color = { package = "keyset-color", path = "../keyset-color", version = "0.3.2", features = ["rgb"] } geom = { package = "keyset-geom", path = "../keyset-geom", version = "0.3.2" } kle-serial = { version = "0.3", optional = true } serde_json = { version = "1.0", optional = true } [dev-dependencies] assert_matches = "1.5" unindent = "0.2"