Skip to content

Commit fe33461

Browse files
committed
chore: Benchmark "add blapi feature to bypass PKCS#11 in RecordProtection"
mozilla/nss-rs#52
1 parent fa9fc98 commit fe33461

3 files changed

Lines changed: 3 additions & 3 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 = "59d3aef11112da4a4d4cf74450fd5b91368e3248", package = "nss-rs", git = "https://github.com/mozilla/nss-rs", features = ["blapi"] }
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/client/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ 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)
647+
Box::pin(Runner::new(real_local, &mut socket, client, handler, &args))
648648
.run()
649649
.await?
650650
} else {

0 commit comments

Comments
 (0)