From 88f8c4b40359e252c08565209a1f6fced5300b75 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 17 Jul 2023 23:30:02 -0400 Subject: bump deps --- Cargo.toml | 68 ++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 35 insertions(+), 33 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index fa19acd..e16395f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,55 +13,57 @@ license = "MIT" include = ["src/**/*", "bin/**/*", "LICENSE", "README.md", "CHANGELOG.md"] [dependencies] -aes = "0.8.2" -anyhow = "1.0.70" -argon2 = "0.5.0" -arrayvec = "0.7.2" -async-trait = "0.1.68" +aes = "0.8.3" +anyhow = "1.0.72" +argon2 = "0.5.1" +arrayvec = "0.7.4" +async-trait = "0.1.71" base32 = "0.4.0" -base64 = "0.21.0" -block-padding = "0.3.2" +base64 = "0.21.2" +block-padding = "0.3.3" cbc = { version = "0.1.2", features = ["alloc", "std"] } -clap = { version = "4.1.13", features = ["wrap_help", "derive"] } -clap_complete = "4.1.5" +clap = { version = "4.3.15", features = ["wrap_help", "derive"] } +clap_complete = "4.3.2" daemonize = "0.5.0" -directories = "5.0.0" +# TODO: directories 5.0.1 uses MPL code, which isn't license-compatible +# we should switch to something else at some point +directories = "=5.0.0" env_logger = "0.10.0" futures = "0.3.28" futures-channel = "0.3.28" -futures-util = "0.3.27" +futures-util = "0.3.28" hkdf = "0.12.3" hmac = { version = "0.12.1", features = ["std"] } humantime = "2.1.0" -libc = "0.2.140" -log = "0.4.17" -nix = "0.26.2" -pbkdf2 = "0.12.1" -percent-encoding = "2.2.0" -pkcs8 = "0.9.0" +libc = "0.2.147" +log = "0.4.19" +nix = "0.24.3" +pbkdf2 = "0.12.2" +percent-encoding = "2.3.0" +pkcs8 = "0.10.2" rand = "0.8.5" region = "3.0.0" -reqwest = { version = "0.11.15", default-features = false, features = ["blocking", "json", "rustls-tls-native-roots"] } -rsa = "0.8.2" -serde = { version = "1.0.158", features = ["derive"] } -serde_json = "1.0.94" -serde_path_to_error = "0.1.11" -serde_repr = "0.1.12" +reqwest = { version = "0.11.18", default-features = false, features = ["blocking", "json", "rustls-tls-native-roots"] } +rsa = "0.9.2" +serde = { version = "1.0.171", features = ["derive"] } +serde_json = "1.0.103" +serde_path_to_error = "0.1.14" +serde_repr = "0.1.14" sha1 = "0.10.5" -sha2 = "0.10.6" -tempfile = "3.4.0" -terminal_size = "0.2.5" +sha2 = "0.10.7" +tempfile = "3.6.0" +terminal_size = "0.2.6" textwrap = "0.16.0" -thiserror = "1.0.40" -tokio = { version = "1.26.0", features = ["full"] } -tokio-stream = { version = "0.1.12", features = ["net"] } +thiserror = "1.0.43" +tokio = { version = "1.29.1", features = ["full"] } +tokio-stream = { version = "0.1.14", features = ["net"] } totp-lite = "2.0.0" -url = "2.3.1" -uuid = { version = "1.3.0", features = ["v4"] } -zeroize = "1.5.7" +url = "2.4.0" +uuid = { version = "1.4.1", features = ["v4"] } +zeroize = "1.6.0" copypasta = "0.8.2" rmpv = "1.0.0" -tokio-tungstenite = { version = "0.18.0", features = ["rustls-tls-native-roots"] } +tokio-tungstenite = { version = "0.19.0", features = ["rustls-tls-native-roots"] } [package.metadata.deb] depends = "pinentry" -- cgit v1.2.3-54-g00ecf