diff --git a/Cargo.lock b/Cargo.lock index 9bd0090d6..7d8f68a81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,12 +305,6 @@ dependencies = [ "rustc-demangle", ] -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - [[package]] name = "base64" version = "0.22.0" @@ -699,7 +693,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" dependencies = [ "aes-gcm", - "base64 0.22.0", + "base64", "hkdf", "hmac", "rand 0.8.5", @@ -3378,11 +3372,11 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "ureq" -version = "2.9.6" +version = "2.9.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11f214ce18d8b2cbe84ed3aa6486ed3f5b285cf8d8fbdbce9f3f767a724adc35" +checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd" dependencies = [ - "base64 0.21.7", + "base64", "flate2", "log", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index ddeaa0f77..50f86b077 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ getrandom = { version = "0.2.3", features = ["js"] } gosub_v8 = { path = "./crates/gosub_v8", features = [] } gosub_webexecutor = { path = "./crates/gosub_webexecutor", features = [] } gosub_net = { path = "./crates/gosub_net", features = [] } -ureq = "2.9.6" +ureq = "2.9.7" futures = "0.3.30" [profile.release] diff --git a/crates/gosub_config/Cargo.toml b/crates/gosub_config/Cargo.toml index 57afa8058..ede909505 100644 --- a/crates/gosub_config/Cargo.toml +++ b/crates/gosub_config/Cargo.toml @@ -19,4 +19,4 @@ anyhow = "1.0.82" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] sqlite = "0.36.0" -ureq = "2.9.5" \ No newline at end of file +ureq = "2.9.7" \ No newline at end of file diff --git a/crates/gosub_html5/Cargo.toml b/crates/gosub_html5/Cargo.toml index 6f0d2783e..a06f3375f 100644 --- a/crates/gosub_html5/Cargo.toml +++ b/crates/gosub_html5/Cargo.toml @@ -18,5 +18,5 @@ log = { version = "0.4.21", features = [] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -ureq = "2.9.6" +ureq = "2.9.7" diff --git a/crates/gosub_net/Cargo.toml b/crates/gosub_net/Cargo.toml index 88df958cd..a1ab9cb6f 100644 --- a/crates/gosub_net/Cargo.toml +++ b/crates/gosub_net/Cargo.toml @@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared", features = [] } gosub_config = { path = "../gosub_config", features = [] } derive_more = "0.99" thiserror = "1.0.59" -ureq = "2.9.5" +ureq = "2.9.7" anyhow = "1.0.82" log = "0.4.21" domain-lookup-tree = "0.1"