diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index db7728aef..2a4af51bd 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -2217,9 +2217,9 @@ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "reqwest" -version = "0.11.20" +version = "0.11.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" +checksum = "78fdbab6a7e1d7b13cc8ff10197f47986b41c639300cc3c8158cac7847c9bbef" dependencies = [ "base64 0.21.4", "bytes", @@ -2244,6 +2244,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", + "system-configuration", "tokio", "tokio-rustls", "tower-service", @@ -2893,6 +2894,27 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "system-configuration" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "take_mut" version = "0.2.2" diff --git a/src/wasm-lib/Cargo.toml b/src/wasm-lib/Cargo.toml index f64ee56cc..c03ad02dd 100644 --- a/src/wasm-lib/Cargo.toml +++ b/src/wasm-lib/Cargo.toml @@ -22,7 +22,7 @@ anyhow = "1" image = "0.24.7" kittycad = "0.2.27" pretty_assertions = "1.4.0" -reqwest = { version = "0.11.20", default-features = false } +reqwest = { version = "0.11.21", default-features = false } tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "time"] } twenty-twenty = "0.6.1" uuid = { version = "1.4.1", features = ["v4", "js", "serde"] } diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index aa21dc402..955d756d1 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -36,7 +36,7 @@ web-sys = { version = "0.3.64", features = ["console"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] bson = { version = "2.7.0", features = ["uuid-1", "chrono"] } futures = { version = "0.3.28" } -reqwest = { version = "0.11.20", default-features = false } +reqwest = { version = "0.11.21", default-features = false } tokio = { version = "1.32.0", features = ["full"] } tokio-tungstenite = { version = "0.20.0", features = ["rustls-tls-native-roots"] } tower-lsp = { version = "0.20.0", features = ["proposed"] }