Update deps (#228)

* Update bitflags crate

* Upgrade ntex-h2
This commit is contained in:
Nikolay Kim 2023-10-09 20:59:04 +06:00 committed by GitHub
parent e3eeaee542
commit 8c3e8ebfd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 176 additions and 287 deletions

View file

@ -26,6 +26,7 @@ impl<T> fmt::Debug for Pool<T> {
}
bitflags::bitflags! {
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
struct Flags: u8 {
const SENDER = 0b0000_0001;
const RECEIVER = 0b0000_0010;

View file

@ -131,6 +131,7 @@ impl Drop for TimerHandle {
}
bitflags::bitflags! {
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct Flags: u8 {
const DRIVER_STARTED = 0b0000_0001;
const DRIVER_RECALC = 0b0000_0010;