Skip to content
This repository was archived by the owner on Sep 7, 2025. It is now read-only.

Commit 7afbc6c

Browse files
authored
Merge pull request #56 from alexykn/dependabot/cargo/cargo-216a1a8966
build(deps): bump the cargo group with 7 updates
2 parents 6bb507d + 014f3a2 commit 7afbc6c

File tree

6 files changed

+37
-39
lines changed

6 files changed

+37
-39
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ anyhow = "1.0.98"
1818
thiserror = "2.0.12"
1919
serde = { version = "1.0.219", features = ["derive"] } # Using the highest specified version and common features
2020
serde_json = "1.0.140" # Used across multiple crates
21-
reqwest = { version = "0.12.19", features = ["json", "stream", "blocking"] } # Combined features from core, net, cli, common
21+
reqwest = { version = "0.12.20", features = ["json", "stream", "blocking"] } # Combined features from core, net, cli, common
2222
tokio = { version = "1.45.1", features = ["full"] } # Used across cli, core, net
2323
futures = "0.3.31" # Used across cli, core, net
2424
tracing = "0.1.41" # Used across cli, common, core, net
@@ -28,7 +28,7 @@ walkdir = "2.5.0" # Used in cli, core (using highest version)
2828
indicatif = "0.17.11" # Used in cli, core (using highest version)
2929
env_logger = "0.11.8" # Used in cli, core
3030
num_cpus = "1.17.0" # Used in cli, core
31-
object = { version = "0.37.0", features = ["read_core", "write_core", "macho"] } # Used in common, core (combined features)
31+
object = { version = "0.37.1", features = ["read_core", "write_core", "macho"] } # Used in common, core (combined features)
3232
humantime = "2.2.0" # Used in common, core
3333
bitflags = { version = "2.9.1", features = ["serde"] } # Used in common, core (combined features)
3434
url = "2.5.4" # Used in core, net

sps-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ serde = { version = "1.0.219", features = ["derive"] }
1616
humantime = "2.2.0"
1717
bitflags = { version = "2.9.1", features = ["serde"] }
1818
thiserror = "2.0.12"
19-
reqwest = { version = "0.12.19", features = ["json", "stream", "blocking"] }
20-
object = { version = "0.37.0", features = ["read_core", "write_core", "macho"] }
19+
reqwest = { version = "0.12.20", features = ["json", "stream", "blocking"] }
20+
object = { version = "0.37.1", features = ["read_core", "write_core", "macho"] }
2121
semver = { version = "1.0.26", features = ["serde"] }
2222
git2 = "0.20.2"

sps-core/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ sps-common = "0.1.56"
1313

1414
anyhow = "1.0.98"
1515
uuid = { version = "1.17.0", features = ["v4"] }
16-
plist = "1.7.1" # For reading Info.plist to get bundle ID
16+
plist = "1.7.2" # For reading Info.plist to get bundle ID
1717
thiserror = "2.0.12"
1818
serde = { version = "1.0.219", features = ["derive"] }
1919
serde_json = "1.0.140"
@@ -22,12 +22,12 @@ semver = "1.0.26"
2222
dirs = "6.0.0"
2323
xattr = "1.5.0"
2424
walkdir = "2.5.0"
25-
reqwest = { version = "0.12.19", features = ["json", "stream", "blocking"] }
25+
reqwest = { version = "0.12.20", features = ["json", "stream", "blocking"] }
2626
url = "2.5.4"
2727
sha2 = "0.10.9"
2828
indicatif = "0.17.11"
2929
hex = "0.4.3"
30-
object = { version = "0.37.0", features = ["read_core", "write_core", "macho"] }
30+
object = { version = "0.37.1", features = ["read_core", "write_core", "macho"] }
3131
tokio = { version = "1.45.1", features = ["full"] }
3232
futures = "0.3.31"
3333
rand = "0.9.1"
@@ -41,14 +41,14 @@ which = "8.0.0"
4141
toml = "0.8.23"
4242
fs_extra = "1.3.0"
4343
git2 = "0.20.2"
44-
cmd_lib = "1.9.5"
44+
cmd_lib = "1.9.6"
4545
tempfile = "3.20.0"
4646
regex = "1.11.1"
4747
glob = "0.3.2"
4848
flate2 = "1.1.2"
4949
bzip2 = "0.5.2"
5050
tar = "0.4.44"
51-
zip = "4.0.0" # Back to original zip crate
51+
zip = "4.1.0" # Back to original zip crate
5252
chrono = { version = "0.4.41", features = ["serde"] }
5353
async-recursion = "1.1.1"
5454
crossbeam-channel = "0.5.15"

sps-net/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ sps-common = "0.1.56"
1212

1313
tokio = { version = "1.45.1", features = ["full"] }
1414
futures = "0.3.31"
15-
reqwest = { version = "0.12.19", features = ["json", "stream", "blocking"] }
15+
reqwest = { version = "0.12.20", features = ["json", "stream", "blocking"] }
1616
serde = { version = "1.0.219", features = ["derive"] }
1717
serde_json = "1.0.140"
1818
rand = "0.9.1"

sps/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sps-core = "0.1.56"
2323
serde = { version = "1.0.219", features = ["derive"] }
2424
thiserror = "2.0.12"
2525
serde_json = "1.0.140"
26-
reqwest = { version = "0.12.19", features = ["json", "stream", "blocking"] }
26+
reqwest = { version = "0.12.20", features = ["json", "stream", "blocking"] }
2727
tokio = { version = "1.45.1", features = ["full"] }
2828
futures = "0.3.31"
2929
tracing = "0.1.41"
@@ -35,7 +35,7 @@ regex = "1.11.1"
3535
tempfile = "3.20.0"
3636

3737
# CLI specific dependencies
38-
clap = { version = "4.5.39", features = ["derive"] }
38+
clap = { version = "4.5.40", features = ["derive"] }
3939
colored = "3.0.0"
4040
spinners = "4.1.1"
4141
dialoguer = "0.11.0"
@@ -52,4 +52,4 @@ ratatui = "0.29.0"
5252
crossterm = "0.29.0"
5353

5454
[build-dependencies]
55-
clap_complete = "4.5.52"
55+
clap_complete = "4.5.54"

0 commit comments

Comments
 (0)