From: Philippe Antoine Date: Thu, 27 Jun 2024 09:10:08 +0000 (+0200) Subject: eve-validator: use default-features in Cargo.toml X-Git-Tag: suricata-7.0.7~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a50947b40eebc1dd9a51ee3cd95e037ed1660f05;p=thirdparty%2Fsuricata-verify.git eve-validator: use default-features in Cargo.toml warning: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition --- diff --git a/eve-validator/Cargo.toml b/eve-validator/Cargo.toml index d35683f1c..de3212073 100644 --- a/eve-validator/Cargo.toml +++ b/eve-validator/Cargo.toml @@ -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"