diff --git a/Cargo.lock b/Cargo.lock index 0311ebeb..ab7385e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7588,7 +7588,7 @@ dependencies = [ "pdf-extract", "rand 0.9.2", "regex", - "reqwest 0.12.28", + "reqwest 0.13.2", "russh", "russh-keys", "rustls", diff --git a/crates/spnl-cli/Cargo.lock b/crates/spnl-cli/Cargo.lock index 906cb024..0e520fc5 100644 --- a/crates/spnl-cli/Cargo.lock +++ b/crates/spnl-cli/Cargo.lock @@ -3516,22 +3516,6 @@ dependencies = [ "tower-service", ] -[[package]] -name = "hyper-tls" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" -dependencies = [ - "bytes", - "http-body-util", - "hyper", - "hyper-util", - "native-tls", - "tokio", - "tokio-native-tls", - "tower-service", -] - [[package]] name = "hyper-util" version = "0.1.20" @@ -4885,23 +4869,6 @@ dependencies = [ "typenum", ] -[[package]] -name = "native-tls" -version = "0.2.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" -dependencies = [ - "libc", - "log", - "openssl", - "openssl-probe", - "openssl-sys", - "schannel", - "security-framework", - "security-framework-sys", - "tempfile", -] - [[package]] name = "ndarray" version = "0.17.2" @@ -6487,13 +6454,11 @@ dependencies = [ "http-body-util", "hyper", "hyper-rustls", - "hyper-tls", "hyper-util", "js-sys", "log", "mime", "mime_guess", - "native-tls", "percent-encoding", "pin-project-lite", "quinn", @@ -6505,7 +6470,6 @@ dependencies = [ "serde_urlencoded", "sync_wrapper", "tokio", - "tokio-native-tls", "tokio-rustls", "tokio-util", "tower", @@ -7688,7 +7652,7 @@ dependencies = [ "petname", "ptree", "rand 0.9.2", - "reqwest 0.12.28", + "reqwest 0.13.2", "rustyline", "serde", "serde_json", @@ -7743,7 +7707,7 @@ dependencies = [ "pdf-extract", "rand 0.9.2", "regex", - "reqwest 0.12.28", + "reqwest 0.13.2", "russh", "russh-keys", "rustls", @@ -8176,19 +8140,6 @@ dependencies = [ "syn 2.0.117", ] -[[package]] -name = "tempfile" -version = "3.26.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0" -dependencies = [ - "fastrand", - "getrandom 0.4.1", - "once_cell", - "rustix", - "windows-sys 0.61.2", -] - [[package]] name = "tendril" version = "0.4.3" @@ -8483,16 +8434,6 @@ dependencies = [ "syn 2.0.117", ] -[[package]] -name = "tokio-native-tls" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" -dependencies = [ - "native-tls", - "tokio", -] - [[package]] name = "tokio-rayon" version = "2.1.0" diff --git a/crates/spnl-cli/Cargo.toml b/crates/spnl-cli/Cargo.toml index cbd54def..683d039b 100644 --- a/crates/spnl-cli/Cargo.toml +++ b/crates/spnl-cli/Cargo.toml @@ -45,5 +45,5 @@ indicatif = { version = "0.18.0", optional = true } lipsum = { git = "https://github.com/mgeisler/lipsum.git", optional = true } petname = { version = "2.0.2", optional = true } rand = { version = "0.9.2", optional = true } -reqwest = { version = "0.12", features = ["blocking", "json"], optional = true } +reqwest = { version = "0.13", features = ["blocking", "json"], optional = true } tokenizers = { version = "0.22.0", default-features = false, features = ["onig", "esaxx_fast", "hf-hub", "http"], optional = true } diff --git a/crates/spnl-run/Cargo.toml b/crates/spnl-run/Cargo.toml index e27a264a..758cf9c0 100644 --- a/crates/spnl-run/Cargo.toml +++ b/crates/spnl-run/Cargo.toml @@ -72,7 +72,7 @@ mistralrs = { version = "0.7.0", git = "https://github.com/EricLBuehler/mistral. mistralrs-core = { version = "0.7.0", git = "https://github.com/EricLBuehler/mistral.rs", rev = "dd8d0c6f9dc2fe3129ff4228de667e2a0efcf5b4", optional = true, default-features = false } hf-hub = { version = "0.4.3", features = ["tokio"], optional = true } derive_builder = "0.20.2" -reqwest = { version = "0.12.20", features = ["json", "stream"], optional = true } +reqwest = { version = "0.13.0", features = ["json", "stream"], optional = true } openssl = { version = "0.10", features = ["vendored"], optional = true } thiserror = { version = "2.0.14", optional = true } clap = { version = "4.5.45", features = ["derive","env"] }