From: Philippe Antoine Date: Sun, 28 Mar 2021 15:53:50 +0000 (+0200) Subject: rust: bump bitflags dependency version X-Git-Tag: suricata-7.0.0-beta1~1720 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6002%2Fhead;p=thirdparty%2Fsuricata.git rust: bump bitflags dependency version So that lexical-core, needed by nom, and using bitflags is used with version 0.7.5 instead of version 0.7.0 which fixed the fact that BITS is now a reserved keyword in nightly version --- diff --git a/rust/Cargo.toml.in b/rust/Cargo.toml.in index 214499b1db..89681f478c 100644 --- a/rust/Cargo.toml.in +++ b/rust/Cargo.toml.in @@ -21,7 +21,7 @@ function-macro = [] [dependencies] nom = "~5.1.2" -bitflags = "~1.0.4" +bitflags = "~1.2.1" byteorder = "~1.4.2" uuid = "~0.8.2" crc = "~1.8.1"