Skip to content

Commit

Permalink
unpin deps and utilize higher msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
toidiu committed Jan 31, 2024
1 parent 2bf07a8 commit 55bd02a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
1 change: 0 additions & 1 deletion quic/s2n-quic-qns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2"
regex = { version = "1", features = ["unicode"] }

[target.'cfg(unix)'.dependencies]
s2n-quic = { path = "../s2n-quic", features = ["provider-event-console-perf", "provider-event-tracing", "provider-tls-rustls", "provider-tls-s2n"] }
Expand Down
4 changes: 2 additions & 2 deletions quic/s2n-quic-qns/src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

use crate::Result;
use bytes::{BufMut, Bytes, BytesMut};
use core::mem::MaybeUninit;
use futures::{ready, stream::Stream};
use core::{mem::MaybeUninit, task::ready};
use futures::stream::Stream;
use std::{
path::{Path, PathBuf},
pin::Pin,
Expand Down
3 changes: 0 additions & 3 deletions quic/s2n-quic-sim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ s2n-quic = { path = "../s2n-quic", features = ["unstable-provider-io-testing", "
s2n-quic-core = { path = "../s2n-quic-core", features = ["testing"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_spanned = "0.6"
structopt = "0.3"
toml = "0.7"
toml_datetime = "0.6"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

0 comments on commit 55bd02a

Please sign in to comment.