diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index a76a8e1e7..54652d1f6 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -3128,9 +3128,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reqwest" -version = "0.11.25" +version = "0.11.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eea5a9eb898d3783f17c6407670e3592fd174cb81a10e51d4c37f49450b9946" +checksum = "78bf93c4af7a8bb7d879d51cebe797356ff10ae8516ace542b5182d9dcac10b2" dependencies = [ "base64 0.21.5", "bytes", @@ -4075,20 +4075,20 @@ dependencies = [ [[package]] name = "system-configuration" -version = "0.6.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "658bc6ee10a9b4fcf576e9b0819d95ec16f4d2c02d39fd83ac1c8789785c4a42" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ - "bitflags 2.4.1", + "bitflags 1.3.2", "core-foundation", "system-configuration-sys", ] [[package]] name = "system-configuration-sys" -version = "0.6.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" dependencies = [ "core-foundation-sys", "libc", diff --git a/src/wasm-lib/Cargo.toml b/src/wasm-lib/Cargo.toml index 65e5add6f..fb45cb318 100644 --- a/src/wasm-lib/Cargo.toml +++ b/src/wasm-lib/Cargo.toml @@ -24,7 +24,7 @@ anyhow = "1" image = "0.24.9" kittycad = { workspace = true, default-features = true } pretty_assertions = "1.4.0" -reqwest = { version = "0.11.25", default-features = false } +reqwest = { version = "0.11.26", default-features = false } tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros", "time"] } twenty-twenty = "0.7" uuid = { version = "1.7.0", features = ["v4", "js", "serde"] } diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 824a73b0c..e3c88ebf4 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -26,7 +26,7 @@ kittycad-execution-plan-macros = { workspace = true } kittycad-execution-plan-traits = { workspace = true } lazy_static = "1.4.0" parse-display = "0.9.0" -reqwest = { version = "0.11.25", default-features = false, features = ["stream", "rustls-tls"] } +reqwest = { version = "0.11.26", default-features = false, features = ["stream", "rustls-tls"] } ropey = "1.6.1" schemars = { version = "0.8.16", features = ["impl_json_schema", "url", "uuid1"] } serde = { version = "1.0.197", features = ["derive"] }