Skip to content

Commit 820cc97

Browse files
authored
Merge branch 'main' into dependabot/cargo/serde-1.0.196
2 parents f40cc2b + c5be3b4 commit 820cc97

File tree

4 files changed

+53
-23
lines changed

4 files changed

+53
-23
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
if: matrix.build != 'aarch64-linux'
9090
run: cargo build
9191

92-
- uses: actions/upload-artifact@v4.1.0
92+
- uses: actions/upload-artifact@v4.3.1
9393
with:
9494
name: bins-${{ matrix.build }}
9595
# Two paths, the first for x86_64 jobs, the second for aarch64.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
cp "target/${{ matrix.target }}/release/$BIN_NAME" "dist/"
6767
fi
6868
69-
- uses: actions/upload-artifact@v4.1.0
69+
- uses: actions/upload-artifact@v4.3.1
7070
with:
7171
name: bins-${{ matrix.build }}
7272
path: dist

Cargo.lock

Lines changed: 47 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,15 @@ debug = false
2727
strip = "symbols"
2828

2929
[dependencies]
30-
serde_json = "1.0.111"
3130
serde = { version = "1.0.196", features = ["derive"] }
31+
serde_json = "1.0.113"
32+
serde = { version = "1.0.195", features = ["derive"] }
3233
dirs = "5.0.1"
3334
rpassword = "7.3.1"
3435
data-encoding = "2.5.0"
3536
copypasta-ext = "0.4.4"
3637
zeroize = { version = "1.7.0", features = ["zeroize_derive"]}
37-
clap = { version = "4.4.16", features = ["derive"] }
38+
clap = { version = "4.5.0", features = ["derive"] }
3839
hmac = "0.12.1"
3940
sha-1 = "0.10.1"
4041
sha2 = "0.10.8"
@@ -48,7 +49,7 @@ qrcode = "0.13.0"
4849
urlencoding = "2.1.3"
4950
base64 = "0.21.7"
5051
md-5 = "0.10.6"
51-
ratatui = { version = "0.25.0", features = ["all-widgets"] }
52+
ratatui = { version = "0.26.0", features = ["all-widgets"] }
5253
crossterm = "0.27.0"
5354
url = "2.5.0"
5455
color-eyre = "0.6.2"

0 commit comments

Comments
 (0)