diff --git a/Cargo.lock b/Cargo.lock index 0acf322..f146742 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -81,9 +81,9 @@ dependencies = [ [[package]] name = "clap" -version = "3.2.16" +version = "3.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3dbbb6653e7c55cc8595ad3e1f7be8f32aba4eb7ff7f0fd1163d4f3d137c0a9" +checksum = "23b71c3ce99b7611011217b366d923f1d0a7e07a92bb2dbf1e84508c673ca3bd" dependencies = [ "atty", "bitflags", @@ -98,9 +98,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "3.2.15" +version = "3.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ba52acd3b0a5c33aeada5cdaa3267cdc7c594a98731d4268cdc1532f4264cb4" +checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" dependencies = [ "heck", "proc-macro-error", diff --git a/src/arch/Cargo.toml b/src/arch/Cargo.toml index 0f2bb27..cc7c120 100644 --- a/src/arch/Cargo.toml +++ b/src/arch/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } platform-info = "0.2" diff --git a/src/ls/Cargo.toml b/src/ls/Cargo.toml index 9c1af17..6f38ad3 100644 --- a/src/ls/Cargo.toml +++ b/src/ls/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } walkdir = "2" # chrono = { version = "0.4", features = ["unstable-locales"] } # filetime = "0.2" diff --git a/src/md5sum/Cargo.toml b/src/md5sum/Cargo.toml index d6b4f1f..e4f7a96 100644 --- a/src/md5sum/Cargo.toml +++ b/src/md5sum/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } md5 = "0.7.0" diff --git a/src/mkdir/Cargo.toml b/src/mkdir/Cargo.toml index dcfb6ee..b05f571 100644 --- a/src/mkdir/Cargo.toml +++ b/src/mkdir/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } rand = "0.8.5" \ No newline at end of file diff --git a/src/nl/Cargo.toml b/src/nl/Cargo.toml index f0e938c..6c90a09 100644 --- a/src/nl/Cargo.toml +++ b/src/nl/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } diff --git a/src/pwd/Cargo.toml b/src/pwd/Cargo.toml index cd91e54..1f8378e 100644 --- a/src/pwd/Cargo.toml +++ b/src/pwd/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } diff --git a/src/rm/Cargo.toml b/src/rm/Cargo.toml index c4c233f..eb42c29 100644 --- a/src/rm/Cargo.toml +++ b/src/rm/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } rand = "0.8.5" anyhow = "1.0.6" promptly = "0.3.1" diff --git a/src/sleep/Cargo.toml b/src/sleep/Cargo.toml index a56b17a..6c2d7c9 100644 --- a/src/sleep/Cargo.toml +++ b/src/sleep/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } regex = "1" diff --git a/src/touch/Cargo.toml b/src/touch/Cargo.toml index f99ff29..1d71276 100644 --- a/src/touch/Cargo.toml +++ b/src/touch/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } filetime = "0.2.16" chrono = "0.4" \ No newline at end of file diff --git a/src/uname/Cargo.toml b/src/uname/Cargo.toml index 9323e6e..d3c8022 100644 --- a/src/uname/Cargo.toml +++ b/src/uname/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } platform-info = "0.2" diff --git a/src/wc/Cargo.toml b/src/wc/Cargo.toml index 625c756..3b88034 100644 --- a/src/wc/Cargo.toml +++ b/src/wc/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } regex = "1.5.5" diff --git a/src/whoami/Cargo.toml b/src/whoami/Cargo.toml index 4963471..14118bc 100644 --- a/src/whoami/Cargo.toml +++ b/src/whoami/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } users = "0.11.0" \ No newline at end of file diff --git a/src/yes/Cargo.toml b/src/yes/Cargo.toml index cf9162f..98fb9bb 100644 --- a/src/yes/Cargo.toml +++ b/src/yes/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] }