]> git.ipfire.org Git - thirdparty/suricata-verify.git/commitdiff
eve-validator: use default-features in Cargo.toml
authorPhilippe Antoine <pantoine@oisf.net>
Thu, 27 Jun 2024 09:10:08 +0000 (11:10 +0200)
committerVictor Julien <victor@inliniac.net>
Thu, 4 Jul 2024 14:23:01 +0000 (16:23 +0200)
warning: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition

eve-validator/Cargo.toml

index d35683f1cd17838afa27f8bd4d887bf4008f9e66..de3212073d90a0217761504875eb831885ebd46f 100644 (file)
@@ -4,6 +4,6 @@ version = "0.1.0"
 edition = "2018"
 
 [dependencies]
-jsonschema = { version = "0.17", default_features = false }
-clap = { version = "3.1.6", default_features = false, features = ["std", "derive"] }
+jsonschema = { version = "0.17", default-features = false }
+clap = { version = "3.1.6", default-features = false, features = ["std", "derive"] }
 serde_json = "1"