Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 2 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ members = [
"crates/server-fixture/server",
"crates/tls/backend",
"crates/tls/client",
"crates/tls/client-async",
"crates/tls/core",
"crates/mpc-tls",
"crates/tls/server-fixture",
Expand Down Expand Up @@ -57,7 +56,6 @@ tlsn-server-fixture = { path = "crates/server-fixture/server" }
tlsn-server-fixture-certs = { path = "crates/server-fixture/certs" }
tlsn-tls-backend = { path = "crates/tls/backend" }
tlsn-tls-client = { path = "crates/tls/client" }
tlsn-tls-client-async = { path = "crates/tls/client-async" }
tlsn-tls-core = { path = "crates/tls/core" }
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "6168663" }
tlsn-harness-core = { path = "crates/harness/core" }
Expand Down
2 changes: 1 addition & 1 deletion crates/examples/attestation/prove.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ async fn prover<S: AsyncWrite + AsyncRead + Send + Sync + Unpin + 'static>(

// Bind the prover to the server connection.
let (tls_connection, prover_fut) = prover
.connect(
.connect_with(
TlsClientConfig::builder()
.server_name(ServerName::Dns(SERVER_DOMAIN.try_into()?))
// Create a root certificate store with the server-fixture's self-signed
Expand Down
2 changes: 1 addition & 1 deletion crates/examples/interactive/interactive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async fn prover<T: AsyncWrite + AsyncRead + Send + Unpin + 'static>(

// Bind the prover to the server connection.
let (tls_connection, prover_fut) = prover
.connect(
.connect_with(
TlsClientConfig::builder()
.server_name(ServerName::Dns(SERVER_DOMAIN.try_into()?))
// Create a root certificate store with the server-fixture's self-signed
Expand Down
2 changes: 1 addition & 1 deletion crates/examples/interactive_zk/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ pub async fn prover<T: AsyncWrite + AsyncRead + Send + Unpin + 'static>(

// Bind the prover to the server connection.
let (tls_connection, prover_fut) = prover
.connect(
.connect_with(
TlsClientConfig::builder()
.server_name(ServerName::Dns(SERVER_DOMAIN.try_into()?))
// Create a root certificate store with the server-fixture's self-signed
Expand Down
2 changes: 1 addition & 1 deletion crates/harness/executor/src/bench/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub async fn bench_prover(provider: &IoProvider, config: &Bench) -> Result<Prove
let downloaded_preprocess = recv.load(Ordering::Relaxed);

let (mut conn, prover_fut) = prover
.connect(
.connect_with(
TlsClientConfig::builder()
.server_name(ServerName::Dns(SERVER_DOMAIN.try_into()?))
.root_store(RootCertStore {
Expand Down
2 changes: 1 addition & 1 deletion crates/harness/executor/test_plugins/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async fn prover(provider: &IoProvider) {
.unwrap();

let (tls_connection, prover_fut) = prover
.connect(
.connect_with(
TlsClientConfig::builder()
.server_name(ServerName::Dns(SERVER_DOMAIN.try_into().unwrap()))
.root_store(RootCertStore {
Expand Down
1 change: 0 additions & 1 deletion crates/mpc-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ rand_chacha = { workspace = true }
rstest = { workspace = true }
tls-server-fixture = { workspace = true }
tlsn-tls-client = { workspace = true }
tlsn-tls-client-async = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] }
tokio-util = { workspace = true, features = ["compat"] }
tracing-subscriber = { workspace = true }
Expand Down
160 changes: 0 additions & 160 deletions crates/mpc-tls/tests/test.rs

This file was deleted.

39 changes: 0 additions & 39 deletions crates/tls/client-async/Cargo.toml

This file was deleted.

Loading
Loading