diff --git a/Cargo.lock b/Cargo.lock index feaae9f..0707ec3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -262,6 +262,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 = "base64ct" version = "1.6.0" @@ -3106,7 +3112,7 @@ dependencies = [ "anyhow", "async-stream", "backoff", - "base64 0.21.7", + "base64 0.22.0", "boringtun", "bytecodec", "clap", diff --git a/Cargo.toml b/Cargo.toml index 21f6426..64e75ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ typed-builder = "0.18.1" #database sqlx = { version = "0.7", default-features = false, features = [ "runtime-tokio-rustls", "sqlite", "uuid", "migrate", "macros" ] } -base64 = "0.21" +base64 = "0.22" rand = { version = "0.8", features = ["getrandom"] } ipnet = "2.9" iprange = "0.6.7"