diff --git a/Cargo.lock b/Cargo.lock index 4aa85a7..68c7502 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -168,6 +168,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b25655df2c3cdd83c5e5b293b88acd880332b2ddadd7c30ac43144fdc0033da9" + [[package]] name = "bitflags" version = "1.3.2" @@ -2063,7 +2069,7 @@ version = "0.0.0-dev" dependencies = [ "anyhow", "async-trait", - "base64 0.22.1", + "base64 0.23.0", "futures-core", "futures-util", "log", @@ -2080,7 +2086,7 @@ name = "tacacsrs-config" version = "0.0.0-dev" dependencies = [ "anyhow", - "base64 0.22.1", + "base64 0.23.0", "bitflags 2.13.1", "serde", "serde_ignored", diff --git a/libraries/tacacsrs_cli_datastore/Cargo.toml b/libraries/tacacsrs_cli_datastore/Cargo.toml index 0a04e6a..775470d 100644 --- a/libraries/tacacsrs_cli_datastore/Cargo.toml +++ b/libraries/tacacsrs_cli_datastore/Cargo.toml @@ -9,7 +9,7 @@ repository.workspace = true [dependencies] anyhow = "1" async-trait = "0.1" -base64 = "0.22" +base64 = "0.23" futures-core = "0.3" futures-util = "0.3" log = "0.4" diff --git a/libraries/tacacsrs_config/Cargo.toml b/libraries/tacacsrs_config/Cargo.toml index 7a3dff7..2ecece4 100644 --- a/libraries/tacacsrs_config/Cargo.toml +++ b/libraries/tacacsrs_config/Cargo.toml @@ -8,7 +8,7 @@ repository.workspace = true [dependencies] anyhow = "1" -base64 = "0.22" +base64 = "0.23" bitflags = { version = "2", features = ["serde"] } serde = { version = "1", features = ["derive"] } serde_ignored = "0.1"