Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Feb 14, 2025
1 parent 9c6b0b5 commit f80a8b6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion neqo-crypto/src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use strum_macros::FromRepr;
use strum::FromRepr;

use crate::err::{mozpkix, sec, ssl, PRErrorCode};

Expand Down
2 changes: 1 addition & 1 deletion neqo-crypto/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// except according to those terms.

use enum_map::Enum;
use strum_macros::FromRepr;
use strum::FromRepr;

use crate::{ssl, Error};

Expand Down
2 changes: 1 addition & 1 deletion neqo-crypto/src/secrets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::{mem, os::raw::c_void, pin::Pin};

use enum_map::EnumMap;
use neqo_common::qdebug;
use strum_macros::FromRepr;
use strum::FromRepr;

use crate::{
agentio::as_c_void,
Expand Down
2 changes: 1 addition & 1 deletion neqo-transport/src/frame.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use std::ops::RangeInclusive;

use neqo_common::{qtrace, Decoder, Encoder};
use strum_macros::FromRepr;
use strum::FromRepr;

use crate::{
cid::MAX_CONNECTION_ID_LEN,
Expand Down
2 changes: 1 addition & 1 deletion neqo-transport/src/tparams.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use neqo_crypto::{
ext::{ExtensionHandler, ExtensionHandlerResult, ExtensionWriterResult},
random, HandshakeMessage, ZeroRttCheckResult, ZeroRttChecker,
};
use strum_macros::FromRepr;
use strum::FromRepr;
use TransportParameterId::{
AckDelayExponent, ActiveConnectionIdLimit, DisableMigration, GreaseQuicBit, IdleTimeout,
InitialMaxData, InitialMaxStreamDataBidiLocal, InitialMaxStreamDataBidiRemote,
Expand Down
3 changes: 1 addition & 2 deletions neqo-transport/src/tracking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ use std::{
use enum_map::{enum_map, Enum, EnumMap};
use neqo_common::{qdebug, qinfo, qtrace, qwarn, IpTosEcn};
use neqo_crypto::Epoch;
use strum::IntoEnumIterator as _;
use strum_macros::EnumIter;
use strum::{EnumIter, IntoEnumIterator as _};

use crate::{
ecn,
Expand Down

0 comments on commit f80a8b6

Please sign in to comment.