From 906bb2851f4fc30e65fcc4ef0c6e7794f0493769 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 8 Jul 2024 18:17:58 +0700 Subject: [PATCH] Use explicit rather than implicit features. --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 8207d503..01f4d8a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,6 +17,11 @@ exclude = [ [package.metadata.docs.rs] features = ["kurbo"] +[features] +default = [] +kurbo = ["dep:kurbo"] +rayon = ["dep:rayon"] + [dependencies] plist = { version = "1.4.1", features = ["serde"] } uuid = { version = "1.2", features = ["v4"] }