diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66a7db8e..46798ee1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: name: Build for Linux runs-on: ubuntu-latest steps: - - uses: actions/checkout@v7.0.0 + - uses: actions/checkout@v7.0.1 - if: ${{ github.event_name == 'push' }} uses: docker/login-action@v4.4.0 with: @@ -79,7 +79,7 @@ jobs: # The unit tests do not expect the files in `test_data` to have carriage returns added. git config --global core.autocrlf false git config --global core.eol lf - - uses: actions/checkout@v7.0.0 + - uses: actions/checkout@v7.0.1 - run: | # Make Bash log commands and not silently ignore errors. set -euxo pipefail @@ -125,7 +125,7 @@ jobs: name: Build for macOS runs-on: macos-latest steps: - - uses: actions/checkout@v7.0.0 + - uses: actions/checkout@v7.0.1 - run: | # Make Bash log commands and not silently ignore errors. set -euxo pipefail @@ -164,7 +164,7 @@ jobs: name: Install on macOS runs-on: macos-latest steps: - - uses: actions/checkout@v7.0.0 + - uses: actions/checkout@v7.0.1 - run: | # Make Bash log commands and not silently ignore errors. set -euxo pipefail @@ -178,7 +178,7 @@ jobs: name: Install on Ubuntu runs-on: ubuntu-latest steps: - - uses: actions/checkout@v7.0.0 + - uses: actions/checkout@v7.0.1 - run: | # Make Bash log commands and not silently ignore errors. set -euxo pipefail @@ -196,7 +196,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v7.0.0 + - uses: actions/checkout@v7.0.1 - uses: docker/login-action@v4.4.0 with: username: stephanmisc diff --git a/Cargo.lock b/Cargo.lock index 795447b8..d484f2df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -60,9 +60,9 @@ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" [[package]] name = "clap" -version = "4.6.2" +version = "4.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011" +checksum = "0fb99565819980999fb7b4a1796046a5c949e6d4ff132cf5fadf5a641e20d776" dependencies = [ "clap_builder", "clap_derive", @@ -92,9 +92,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.6.1" +version = "4.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" +checksum = "32f2392eae7f16557a3d727ef3a12e57b2b2ca6f98566a5f4fb41ffe305df077" dependencies = [ "heck", "proc-macro2", @@ -147,9 +147,9 @@ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" [[package]] name = "libc" -version = "0.2.186" +version = "0.2.187" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" +checksum = "a7743783ea728ef5c31194c6590797eed286449b4a4e87d626d8a51f0a94e732" [[package]] name = "linux-raw-sys" @@ -174,18 +174,18 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.106" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9" dependencies = [ "unicode-ident", ] [[package]] name = "quote" -version = "1.0.46" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368" +checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001" dependencies = [ "proc-macro2", ] diff --git a/Cargo.toml b/Cargo.toml index 4221e1b7..ab92a40b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ clippy.pedantic = { level = "deny", priority = -1 } rust.warnings = "deny" [dependencies] -clap = { version = "4.6.2", features = ["derive", "wrap_help"] } +clap = { version = "4.6.3", features = ["derive", "wrap_help"] } clap_complete = "4.6.7" colored = "3.1.1" pad = "0.1.6"