diff --git a/Cargo.lock b/Cargo.lock index 954d4f7..a5f1eb6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -414,19 +414,6 @@ version = "4.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" -[[package]] -name = "async-tls" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d85a97c4a0ecce878efd3f945f119c78a646d8975340bca0398f9bb05c30cc52" -dependencies = [ - "futures-core", - "futures-io", - "rustls", - "webpki", - "webpki-roots", -] - [[package]] name = "async-trait" version = "0.1.77" @@ -480,12 +467,6 @@ version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" -[[package]] -name = "base64" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" - [[package]] name = "base64" version = "0.13.1" @@ -1578,7 +1559,6 @@ dependencies = [ "async-h1", "async-native-tls", "async-std", - "async-tls", "async-trait", "cfg-if", "dashmap", @@ -1586,7 +1566,6 @@ dependencies = [ "futures", "http-types", "log", - "rustls", ] [[package]] @@ -2592,21 +2571,6 @@ dependencies = [ "rand 0.8.5", ] -[[package]] -name = "ring" -version = "0.16.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" -dependencies = [ - "cc", - "libc", - "once_cell", - "spin", - "untrusted", - "web-sys", - "winapi", -] - [[package]] name = "ron" version = "0.8.1" @@ -2671,19 +2635,6 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "rustls" -version = "0.18.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d1126dcf58e93cee7d098dbda643b5f92ed724f1f6a63007c1116eed6700c81" -dependencies = [ - "base64 0.12.3", - "log", - "ring", - "sct", - "webpki", -] - [[package]] name = "rustversion" version = "1.0.14" @@ -2720,16 +2671,6 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" -[[package]] -name = "sct" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" -dependencies = [ - "ring", - "untrusted", -] - [[package]] name = "security-framework" version = "2.10.0" @@ -2959,12 +2900,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "spin" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" - [[package]] name = "spinning_top" version = "0.3.0" @@ -3139,7 +3074,6 @@ dependencies = [ "mime_guess", "once_cell", "pin-project-lite", - "rustls", "serde", "serde_json", "web-sys", @@ -3648,12 +3582,6 @@ dependencies = [ "subtle", ] -[[package]] -name = "untrusted" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" - [[package]] name = "url" version = "2.5.0" @@ -3803,25 +3731,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "webpki" -version = "0.21.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" -dependencies = [ - "ring", - "untrusted", -] - -[[package]] -name = "webpki-roots" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f20dea7535251981a9670857150d571846545088359b28e4951d350bdaf179f" -dependencies = [ - "webpki", -] - [[package]] name = "winapi" version = "0.3.9" diff --git a/examples/tfc-clean-workspace/Cargo.toml b/examples/tfc-clean-workspace/Cargo.toml index 66ac84b..c3cb825 100644 --- a/examples/tfc-clean-workspace/Cargo.toml +++ b/examples/tfc-clean-workspace/Cargo.toml @@ -32,7 +32,7 @@ log = "0.4.21" miette = { version = "7.1.0", features = ["fancy"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" -surf = { version = "2.3.2", default-features = false, features = ["encoding", "h1-client-rustls"] } +surf = { version = "2.3.2", default-features = false, features = ["encoding", "h1-client"] } thiserror = "1.0.57" url = "2.5.0" walkdir = "2.5.0" diff --git a/examples/tfc-run-workspace/Cargo.toml b/examples/tfc-run-workspace/Cargo.toml index 2863eaf..43bb0ca 100644 --- a/examples/tfc-run-workspace/Cargo.toml +++ b/examples/tfc-run-workspace/Cargo.toml @@ -28,7 +28,7 @@ log = "0.4.21" miette = { version = "7.1.0", features = ["fancy"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" -surf = { version = "2.3.2", default-features = false, features = ["encoding", "h1-client-rustls"] } +surf = { version = "2.3.2", default-features = false, features = ["encoding", "h1-client"] } thiserror = "1.0.57" url = "2.5.0" diff --git a/examples/tfc-variable-set/Cargo.toml b/examples/tfc-variable-set/Cargo.toml index bc985bd..1e10856 100644 --- a/examples/tfc-variable-set/Cargo.toml +++ b/examples/tfc-variable-set/Cargo.toml @@ -28,7 +28,7 @@ log = "0.4.21" miette = { version = "7.1.0", features = ["fancy"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" -surf = { version = "2.3.2", default-features = false, features = ["encoding", "h1-client-rustls"] } +surf = { version = "2.3.2", default-features = false, features = ["encoding", "h1-client"] } thiserror = "1.0.57" url = "2.5.0" diff --git a/examples/tfc-which-workspace/Cargo.toml b/examples/tfc-which-workspace/Cargo.toml index 36ab0db..17592ce 100644 --- a/examples/tfc-which-workspace/Cargo.toml +++ b/examples/tfc-which-workspace/Cargo.toml @@ -27,7 +27,7 @@ log = "0.4.21" miette = { version = "7.1.0", features = ["fancy"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" -surf = { version = "2.3.2", default-features = false, features = ["encoding", "h1-client-rustls"] } +surf = { version = "2.3.2", default-features = false, features = ["encoding", "h1-client"] } thiserror = "1.0.57" url = "2.5.0"