diff --git a/Cargo.lock b/Cargo.lock index 672afd3..fe1124e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -43,9 +43,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.62" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1485d4d2cc45e7b201ee3767015c96faa5904387c9d87c6efdd0fb511f12d305" +checksum = "b9a8f622bcf6ff3df478e9deba3e03e4e04b300f8e6a139e192c05fa3490afc7" [[package]] name = "arboard" @@ -278,9 +278,9 @@ dependencies = [ [[package]] name = "clap" -version = "3.2.17" +version = "3.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29e724a68d9319343bb3328c9cc2dfde263f4b3142ee1059a9980580171c954b" +checksum = "23b71c3ce99b7611011217b366d923f1d0a7e07a92bb2dbf1e84508c673ca3bd" dependencies = [ "atty", "bitflags", @@ -304,9 +304,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "3.2.17" +version = "3.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13547f7012c01ab4a0e8f8967730ada8f9fdf419e8b6c792788f39cf4e46eefa" +checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" dependencies = [ "heck 0.4.0", "proc-macro-error", @@ -326,9 +326,9 @@ dependencies = [ [[package]] name = "clap_mangen" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "937efe4451c32be4ccb3e19549cbb1ea5cb85197f39b87a9662ca1d7b1765d1d" +checksum = "105180c05a72388d5f5e4e4f6c79eecb92497bda749fa8f963a16647c5d5377f" dependencies = [ "clap", "roff", @@ -1051,9 +1051,9 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "713d550d9b44d89174e066b7a6217ae06234c10cb47819a88290d2b353c31799" +checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf" dependencies = [ "libc", "log", @@ -1763,18 +1763,18 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" [[package]] name = "thiserror" -version = "1.0.32" +version = "1.0.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" +checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.32" +version = "1.0.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" +checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487" dependencies = [ "proc-macro2", "quote", @@ -1838,9 +1838,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.20.1" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" +checksum = "89797afd69d206ccd11fb0ea560a44bbb87731d020670e79416d442919257d42" dependencies = [ "autocfg", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 5d9a16a..9cef8ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,10 +30,10 @@ codegen-units = 1 base64 = "0.13.0" notify-rust = "4.5.8" validator = "0.16.0" -thiserror = "1.0.32" +thiserror = "1.0.34" serde_json = "1.0.85" serde = { version = "1.0.144", features = ["derive"] } reqwest = { version = "0.11.11", default-features = false, features = ["json", "rustls-tls", "multipart"] } [dev-dependencies] -tokio = { version = "1.20.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.21.0", features = ["macros", "rt-multi-thread"] } diff --git a/imgurs-cli/Cargo.toml b/imgurs-cli/Cargo.toml index 4437ba9..2cb1a16 100644 --- a/imgurs-cli/Cargo.toml +++ b/imgurs-cli/Cargo.toml @@ -16,10 +16,10 @@ name = "imgurs" path = "src/main.rs" [dependencies] -anyhow = "1.0.62" -clap = { version = "3.2.17", features = ["derive"] } +anyhow = "1.0.64" +clap = { version = "3.2.20", features = ["derive"] } clap_complete = "3.2.4" -clap_mangen = "0.1.10" +clap_mangen = "0.1.11" chrono = "0.4.22" colored = "2.0.0" notify-rust = "4.5.8" @@ -29,7 +29,7 @@ log = "0.4.17" simple_logger = "2.3.0" toml = "0.5.9" serde = { version = "1.0.144", features = ["derive"] } -tokio = { version = "1.20.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.21.0", features = ["macros", "rt-multi-thread"] } imgurs = { path = "..", features = ["full"] } [target.'cfg(not(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten")))))'.dependencies]