Compare commits

...

2 Commits

Author SHA1 Message Date
8f2834029e Update Rust crate clap to 4.4.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-08-29 00:25:53 +00:00
e6da20ee51 Update Rust crate base64 to 0.21.3
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-08-27 00:27:55 +00:00
2 changed files with 14 additions and 14 deletions

24
Cargo.lock generated
View File

@@ -54,7 +54,7 @@ dependencies = [
"actix-service",
"actix-utils",
"ahash 0.8.3",
"base64 0.21.2",
"base64 0.21.3",
"bitflags",
"brotli",
"bytes",
@@ -536,9 +536,9 @@ checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5"
[[package]]
name = "base64"
version = "0.21.2"
version = "0.21.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53"
[[package]]
name = "base64ct"
@@ -552,7 +552,7 @@ version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18b3d30abb74120a9d5267463b9e0045fdccc4dd152e7249d966612dc1721384"
dependencies = [
"base64 0.21.2",
"base64 0.21.3",
"serde",
"serde_json",
]
@@ -568,7 +568,7 @@ dependencies = [
"actix-web",
"askama",
"base32",
"base64 0.21.2",
"base64 0.21.3",
"bcrypt",
"bincode",
"chrono",
@@ -611,7 +611,7 @@ version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d1c9c15093eb224f0baa400f38fcd713fc1391a6f1c389d886beef146d60a3"
dependencies = [
"base64 0.21.2",
"base64 0.21.3",
"blowfish",
"getrandom",
"subtle",
@@ -764,9 +764,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.4.0"
version = "4.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d5f1946157a96594eb2d2c10eb7ad9a2b27518cb3000209dec700c35df9197d"
checksum = "7c8d502cbaec4595d2e7d5f61e318f05417bd2b66fdc3809498f0d3fdf0bea27"
dependencies = [
"clap_builder",
"clap_derive",
@@ -775,9 +775,9 @@ dependencies = [
[[package]]
name = "clap_builder"
version = "4.4.0"
version = "4.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78116e32a042dd73c2901f0dc30790d20ff3447f3e3472fad359e8c3d282bcd6"
checksum = "5891c7bc0edb3e1c2204fc5e94009affabeb1821c9e5fdc3959536c5c0bb984d"
dependencies = [
"anstream",
"anstyle",
@@ -1809,7 +1809,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "608aa1b7148a6eeab631c6267deca33407ff851ab50eea115e52c13a9bb184ee"
dependencies = [
"aes-gcm",
"base64 0.21.2",
"base64 0.21.3",
"bincode",
"log",
"rand",
@@ -2376,7 +2376,7 @@ version = "0.11.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91"
dependencies = [
"base64 0.21.2",
"base64 0.21.3",
"bytes",
"encoding_rs",
"futures-core",

View File

@@ -11,7 +11,7 @@ actix-identity = "0.5.2"
actix-web = "4"
actix-session = { version = "0.7.2", features = ["cookie-session"] }
actix-remote-ip = "0.1.0"
clap = { version = "4.4.0", features = ["derive", "env"] }
clap = { version = "4.4.1", features = ["derive", "env"] }
include_dir = "0.7.3"
log = "0.4.20"
serde_json = "1.0.104"
@@ -25,7 +25,7 @@ askama = "0.12.0"
futures-util = "0.3.28"
urlencoding = "2.1.3"
rand = "0.8.5"
base64 = "0.21.2"
base64 = "0.21.3"
jwt-simple = "0.11.6"
digest = "0.10.7"
sha2 = "0.10.7"