upgrade more misc dependencies (#384)

- upgrade uuid to 1.8
- remove scraper from deps
- upgrade cookie to 0.18
- upgrade reqwest to 0.12
- upgrade qrcode to 0.14
- upgrade dirs to 5.0.1
This commit is contained in:
Carson McManus 2024-06-02 13:56:05 -04:00 committed by GitHub
parent b24a7415f6
commit 52044c95bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 219 additions and 827 deletions

1029
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -32,7 +32,7 @@ anyhow = "^1.0"
base64 = "0.22.1" base64 = "0.22.1"
text_io = "0.1.8" text_io = "0.1.8"
rpassword = "7.2.0" rpassword = "7.2.0"
reqwest = { version = "0.11", default-features = false, features = [ reqwest = { version = "0.12", default-features = false, features = [
"blocking", "blocking",
"json", "json",
"cookies", "cookies",
@ -47,16 +47,16 @@ clap = { version = "4.5.4", features = ["derive", "cargo", "env"] }
clap_complete = "4.5.2" clap_complete = "4.5.2"
log = "0.4.19" log = "0.4.19"
stderrlog = "0.6" stderrlog = "0.6"
cookie = "0.14" cookie = "0.18"
regex = "1" regex = "1"
lazy_static = "1.4.0" lazy_static = "1.4.0"
uuid = { version = "0.8", features = ["v4"] } uuid = { version = "1.8", features = ["v4"] }
steamguard = { version = "^0.13.0", path = "./steamguard" } steamguard = { version = "^0.13.0", path = "./steamguard" }
dirs = "3.0.2" dirs = "5.0.1"
aes = { version = "0.8.3", features = ["zeroize"] } aes = { version = "0.8.3", features = ["zeroize"] }
thiserror = "1.0.61" thiserror = "1.0.61"
crossterm = { version = "0.23.2", features = ["event-stream"] } crossterm = { version = "0.23.2", features = ["event-stream"] }
qrcode = { version = "0.12.0", optional = true } qrcode = { version = "0.14.0", optional = true }
gethostname = "0.4.3" gethostname = "0.4.3"
secrecy = { version = "0.8", features = ["serde"] } secrecy = { version = "0.8", features = ["serde"] }
zeroize = { version = "^1.6.0", features = ["std", "zeroize_derive"] } zeroize = { version = "^1.6.0", features = ["std", "zeroize_derive"] }

View file

@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
anyhow = "^1.0" anyhow = "^1.0"
sha1 = "^0.10" sha1 = "^0.10"
base64 = "^0.22.1" base64 = "^0.22.1"
reqwest = { version = "0.11", default-features = false, features = [ reqwest = { version = "0.12", default-features = false, features = [
"blocking", "blocking",
"json", "json",
"cookies", "cookies",
@ -24,12 +24,11 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
rsa = "0.9.2" rsa = "0.9.2"
rand = "0.8.4" rand = "0.8.4"
cookie = "0.14" cookie = "0.18"
regex = "1" regex = "1"
lazy_static = "1.4.0" lazy_static = "1.4.0"
uuid = { version = "0.8", features = ["v4"] } uuid = { version = "1.8", features = ["v4"] }
log = "0.4.19" log = "0.4.19"
scraper = "0.12.0"
maplit = "1.0.2" maplit = "1.0.2"
thiserror = "1.0.26" thiserror = "1.0.26"
secrecy = { version = "0.8", features = ["serde"] } secrecy = { version = "0.8", features = ["serde"] }