From: Philippe Antoine Date: Sun, 28 Mar 2021 15:53:50 +0000 (+0200) Subject: rust: bump bitflags dependency version X-Git-Tag: suricata-6.0.4~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d9209b65fccc285d2085dd12ecac58e8b797f0b;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 (cherry picked from commit 0105d4f017127f9696646e7d0176caec47a7c169) --- diff --git a/rust/Cargo.toml.in b/rust/Cargo.toml.in index 7ba259bdcc..231bbc07d2 100644 --- a/rust/Cargo.toml.in +++ b/rust/Cargo.toml.in @@ -21,7 +21,7 @@ decompression = ["flate2", "brotli"] [dependencies] nom = "= 5.1.1" -bitflags = "1.0" +bitflags = "~1.2.1" byteorder = "1.3" uuid = "0.8" crc = "1.8"