summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-08-25 18:39:42 +0200
committerMatthias Beyer <mail@beyermatthias.de>2023-08-25 18:39:44 +0200
commit24731d40f7bee2216c85408018400867d160bfc4 (patch)
treeefc01b4467652489d9993f3999fe958f5876733f
parent9b2fd7854f161c9578096a891cceb70e7ed5be63 (diff)
Fix: Enable serde/derive when enabling json5 feature
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d04c287..b13f6f1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,7 +19,7 @@ default = ["toml", "json", "yaml", "ini", "ron", "json5", "convert-case", "async
json = ["serde_json"]
yaml = ["yaml-rust"]
ini = ["rust-ini"]
-json5 = ["json5_rs"]
+json5 = ["json5_rs", "serde/derive"]
convert-case = ["convert_case"]
preserve_order = ["indexmap", "toml/preserve_order", "serde_json/preserve_order", "ron/indexmap"]
async = ["async-trait"]