Merge pull request #150 from ivre/dependabot/cargo/bitflags-2.3.3

Bump bitflags from 1.3.2 to 2.3.3
This commit is contained in:
Pierre 2023-07-03 18:31:06 +02:00 committed by GitHub
commit 4318d5bf74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

8
Cargo.lock generated
View file

@ -110,6 +110,12 @@ version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
[[package]] [[package]]
name = "bumpalo" name = "bumpalo"
version = "3.12.0" version = "3.12.0"
@ -487,7 +493,7 @@ checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
name = "masscanned" name = "masscanned"
version = "0.2.0" version = "0.2.0"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 2.3.3",
"byteorder", "byteorder",
"chrono", "chrono",
"clap", "clap",

View file

@ -21,7 +21,7 @@ authors = ["_Frky <3105926+Frky@users.noreply.github.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
bitflags = "1.2.1" bitflags = "2.3.3"
byteorder = "1.4.3" byteorder = "1.4.3"
chrono = "0.4.26" chrono = "0.4.26"
clap = "4.3.10" clap = "4.3.10"

View file

@ -1,4 +1,5 @@
bitflags! { bitflags! {
#[derive(Clone, Copy)]
pub struct SmackFlags: usize { pub struct SmackFlags: usize {
const EMPTY = 0x00; const EMPTY = 0x00;
const ANCHOR_BEGIN = 0x01; const ANCHOR_BEGIN = 0x01;