diff --git a/vdr/Cargo.lock b/vdr/Cargo.lock index 23dee401..35715eeb 100644 --- a/vdr/Cargo.lock +++ b/vdr/Cargo.lock @@ -301,6 +301,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + [[package]] name = "base64ct" version = "1.6.0" @@ -1305,7 +1311,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.4.10", + "socket2 0.5.5", "tokio", "tower-service", "tracing", @@ -1418,7 +1424,7 @@ version = "0.0.1" dependencies = [ "async-std", "async-trait", - "base64 0.21.7", + "base64 0.22.1", "bs58", "chrono", "ed25519-dalek", diff --git a/vdr/Cargo.toml b/vdr/Cargo.toml index 917be855..a29751be 100644 --- a/vdr/Cargo.toml +++ b/vdr/Cargo.toml @@ -24,7 +24,7 @@ log = "0.4" log-derive = "0.4.1" async-std = { version = "1.12.0", features = ["attributes", "tokio1"] } async-trait = "0.1.73" -base64 = "0.21.7" +base64 = "0.22.1" bs58 = "0.5.0" chrono = "0.4.31" ethereum = "0.15.0"