Skip to content

Commit e973868

Browse files
committed
chore: Benchmark mozilla/nss-rs#51
1 parent fa9fc98 commit e973868

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ hex = { version = "0.4", default-features = false }
3636
http = { version = "1", default-features = false, features = ["std"] }
3737
libc = { version = "0.2", default-features = false }
3838
log = { version = "0.4", default-features = false }
39-
nss = { rev = "0.9.0", package = "nss-rs", git = "https://github.com/mozilla/nss-rs" }
39+
nss = { rev = "fab931a26927106edf6d793907b96fd096b9bf68", package = "nss-rs", git = "https://github.com/mozilla/nss-rs" }
4040
qlog = { version = "0.16.0", default-features = false }
4141
quinn-udp = { version = "0.6", default-features = false, features = ["log", "fast-apple-datapath"] }
4242
rustc-hash = { version = "2.1", default-features = false, features = [ "std" ]}

neqo-bin/src/bin/client.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ use clap::Parser as _;
1515
async fn main() -> Result<(), neqo_bin::client::Error> {
1616
let args = neqo_bin::client::Args::parse();
1717

18-
#[cfg_attr(apple, expect(clippy::large_futures, reason = "OK in test code."))]
1918
neqo_bin::client::client(args).await
2019
}

neqo-bin/src/client/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -644,8 +644,8 @@ pub async fn client(mut args: Args) -> Res<()> {
644644

645645
let handler = http3::Handler::new(to_request, args.clone());
646646

647-
Runner::new(real_local, &mut socket, client, handler, &args)
648-
.run()
647+
Box::pin(Runner::new(real_local, &mut socket, client, handler, &args)
648+
.run())
649649
.await?
650650
} else {
651651
let client = http09::create_client(&args, real_local, remote_addr, &host, token)

0 commit comments

Comments
 (0)