mirror of
https://github.com/actix/actix-extras.git
synced 2025-06-26 02:19:22 +02:00
build(deps): update redis requirement from 0.24 to 0.25 (#412)
* build(deps): update redis requirement from 0.24 to 0.25 Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.24.0...redis-0.25.0) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * refactor(session): rename TLS features --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
14
justfile
14
justfile
@ -1,13 +1,25 @@
|
||||
# depends on:
|
||||
# - https://crates.io/crates/fd-find
|
||||
# - https://crates.io/crates/cargo-check-external-types
|
||||
|
||||
_list:
|
||||
@just --list
|
||||
|
||||
msrv := ```
|
||||
cargo metadata --format-version=1 \
|
||||
| jq -r 'first(.packages[] | select(.source == null and .rust_version)) | .rust_version' \
|
||||
| sed -E 's/^1\.([0-9]{2})$/1\.\1\.0/'
|
||||
```
|
||||
msrv_rustup := "+" + msrv
|
||||
|
||||
# Run Clippy over workspace.
|
||||
clippy toolchain="":
|
||||
cargo {{ toolchain }} clippy --workspace --all-targets --all-features
|
||||
|
||||
# Format workspace.
|
||||
fmt: update-readmes
|
||||
cargo +nightly fmt
|
||||
npx -y prettier --write $(fd --hidden --extension=yml --extension=md)
|
||||
fd --hidden --extension=yml --extension=md --exec-batch npx -y prettier --write
|
||||
|
||||
# Update READMEs from crate root documentation.
|
||||
update-readmes:
|
||||
|
Reference in New Issue
Block a user