diff --git a/Cargo.lock b/Cargo.lock index 6af8ee794..3cdf77016 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -249,6 +249,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" + [[package]] name = "bit-set" version = "0.5.3" @@ -532,12 +538,12 @@ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" [[package]] name = "cookie" -version = "0.18.0" +version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cd91cf61412820176e137621345ee43b3f4423e589e7ae4e50d601d93e35ef8" +checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" dependencies = [ "aes-gcm", - "base64", + "base64 0.22.0", "hkdf", "hmac", "rand 0.8.5", @@ -2798,7 +2804,7 @@ version = "2.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11f214ce18d8b2cbe84ed3aa6486ed3f5b285cf8d8fbdbce9f3f767a724adc35" dependencies = [ - "base64", + "base64 0.21.7", "flate2", "log", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index 48dfe5805..db45215c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,7 +59,7 @@ anyhow = "1.0.81" walkdir = "2.5" clap = { version = "4.5.3", features = ["derive"] } simple_logger = "4.2.0" -cookie = { version = "0.18.0", features = ["secure", "private"] } +cookie = { version = "0.18.1", features = ["secure", "private"] } url = "2.5.0" [dev-dependencies] diff --git a/crates/gosub_net/Cargo.toml b/crates/gosub_net/Cargo.toml index b11ac6c30..a11807461 100644 --- a/crates/gosub_net/Cargo.toml +++ b/crates/gosub_net/Cargo.toml @@ -16,6 +16,6 @@ log = "0.4.21" domain-lookup-tree = "0.1" hickory-resolver = "0.24.0" simple_logger = "4.2.0" -cookie = { version = "0.18.0", features = ["secure", "private"] } +cookie = { version = "0.18.1", features = ["secure", "private"] } http = "1.0.0" url = "2.5.0"