Skip to content

Commit

Permalink
Merge branch 'main' into patrickwoodhead-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
bajtos authored Oct 25, 2023
2 parents 7592efb + fa56969 commit e8aff6f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
toolchain: stable
target: ${{ matrix.target }}

- uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2.7.0
- uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1
with:
shared-key: ${{ matrix.target }}
# Always save the build artifacts to the cache to speed up builds of additional
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
toolchain: stable
target: ${{ matrix.target }}

- uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2.7.0
- uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1
with:
shared-key: ${{ matrix.target }}
save-if: false
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
with:
toolchain: stable

- uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2.7.0
- uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1
with:
shared-key: "x86_64-unknown-linux-gnu"
save-if: false
Expand All @@ -138,7 +138,7 @@ jobs:
toolchain: stable
components: clippy

- uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2.7.0
- uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1
with:
shared-key: "x86_64-unknown-linux-gnu"
save-if: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
# Note that a build for one tag cannot access cache created by a build for a different tag,
# therefore caching does not work for real release builds.
- name: Debugging | Cache Rust deps
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2.7.0
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
with:
shared-key: release-${{ matrix.target }}
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ path = "main.rs"
doc = false

[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
clap = { version = "4.4.7", features = ["derive"] }
env_logger.workspace = true
log.workspace = true
tokio = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ doc = false

[dependencies]
atomicwrites = "0.4.2"
clap = { version = "4.4.6", features = ["derive", "env"] }
clap = { version = "4.4.7", features = ["derive", "env"] }
env_logger.workspace = true
log.workspace = true
serde.workspace = true
Expand Down

0 comments on commit e8aff6f

Please sign in to comment.