3 Commits

Author SHA1 Message Date
3db7db8590 Update Rust crate clap to 4.4.15
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2024-01-12 00:08:35 +00:00
ec508607e7 Update Rust crate clap to 4.4.14
All checks were successful
continuous-integration/drone/push Build is passing
2024-01-09 00:11:56 +00:00
606add4f12 Update Rust crate base64 to 0.21.6
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-01-09 00:08:24 +00:00
2 changed files with 14 additions and 14 deletions

24
Cargo.lock generated
View File

@@ -55,7 +55,7 @@ dependencies = [
"actix-service",
"actix-utils",
"ahash 0.8.3",
"base64 0.21.5",
"base64 0.21.6",
"bitflags 1.3.2",
"brotli",
"bytes",
@@ -549,9 +549,9 @@ checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5"
[[package]]
name = "base64"
version = "0.21.5"
version = "0.21.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
checksum = "c79fed4cdb43e993fcdadc7e58a09fd0e3e649c4436fa11da71c9f1f3ee7feb9"
[[package]]
name = "base64ct"
@@ -565,7 +565,7 @@ version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18b3d30abb74120a9d5267463b9e0045fdccc4dd152e7249d966612dc1721384"
dependencies = [
"base64 0.21.5",
"base64 0.21.6",
"serde",
"serde_json",
]
@@ -581,7 +581,7 @@ dependencies = [
"actix-web",
"askama",
"base32",
"base64 0.21.5",
"base64 0.21.6",
"bcrypt",
"bincode",
"chrono",
@@ -624,7 +624,7 @@ version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d1c9c15093eb224f0baa400f38fcd713fc1391a6f1c389d886beef146d60a3"
dependencies = [
"base64 0.21.5",
"base64 0.21.6",
"blowfish",
"getrandom",
"subtle",
@@ -793,9 +793,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.4.13"
version = "4.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52bdc885e4cacc7f7c9eedc1ef6da641603180c783c41a15c264944deeaab642"
checksum = "c12ed66a79a555082f595f7eb980d08669de95009dd4b3d61168c573ebe38fc9"
dependencies = [
"clap_builder",
"clap_derive",
@@ -803,9 +803,9 @@ dependencies = [
[[package]]
name = "clap_builder"
version = "4.4.12"
version = "4.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9"
checksum = "0f4645eab3431e5a8403a96bea02506a8b35d28cd0f0330977dd5d22f9c84f43"
dependencies = [
"anstream",
"anstyle",
@@ -1835,7 +1835,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "608aa1b7148a6eeab631c6267deca33407ff851ab50eea115e52c13a9bb184ee"
dependencies = [
"aes-gcm",
"base64 0.21.5",
"base64 0.21.6",
"bincode",
"log",
"rand",
@@ -2382,7 +2382,7 @@ version = "0.11.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91"
dependencies = [
"base64 0.21.5",
"base64 0.21.6",
"bytes",
"encoding_rs",
"futures-core",

View File

@@ -11,7 +11,7 @@ actix-identity = "0.6.0"
actix-web = "4"
actix-session = { version = "0.8.0", features = ["cookie-session"] }
actix-remote-ip = "0.1.0"
clap = { version = "4.4.13", features = ["derive", "env"] }
clap = { version = "4.4.15", features = ["derive", "env"] }
include_dir = "0.7.3"
log = "0.4.20"
serde_json = "1.0.111"
@@ -25,7 +25,7 @@ askama = "0.12.1"
futures-util = "0.3.30"
urlencoding = "2.1.3"
rand = "0.8.5"
base64 = "0.21.5"
base64 = "0.21.6"
jwt-simple = { version = "0.12.7", default-features=false, features=["pure-rust"] }
digest = "0.10.7"
sha2 = "0.10.8"