Skip to content

Commit 91a1162

Browse files
authored
Merge pull request #4 from chainbound/bump
chore: misc bumps
2 parents 7584def + 5056547 commit 91a1162

File tree

5 files changed

+29
-4
lines changed

5 files changed

+29
-4
lines changed

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: dtolnay/rust-toolchain@master
2525
# Need to specify @master above to work with toolchain var
2626
with:
27-
toolchain: 1.83.0
27+
toolchain: 1.86.0
2828
- uses: Swatinem/rust-cache@v2
2929
with:
3030
cache-on-failure: true

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
/target
22
.env
3+
4+
# macOS
5+
.DS_Store

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[package]
22
name = "TODO"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55
license = "MIT"
6-
# rust-version = "1.83"
76
exclude = [".github/"]
87
repository = "TODO"
98

justfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
set shell := ["bash", "-cu"]
2+
set dotenv-load := true
3+
4+
# display a help message about available commands
5+
default:
6+
@just --list --unsorted
7+
8+
9+
# run all recipes required to pass CI workflows
10+
ci:
11+
@just fmt lint test
12+
13+
# run unit tests
14+
test:
15+
cargo nextest run --workspace -E "kind(lib) | kind(bin) | kind(proc-macro)"
16+
17+
# run collection of clippy lints
18+
lint:
19+
RUSTFLAGS="-D warnings" cargo clippy --examples --tests --benches --all-features --locked
20+
21+
# format the code using the nightly rustfmt (as we use some nightly lints)
22+
fmt:
23+
cargo +nightly fmt --all

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
22
channel = "stable"
3-
version = "1.83.0"
3+
version = "1.86.0"

0 commit comments

Comments
 (0)