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

Commit 9a331fe

Browse files
authored
Merge pull request #62 from alexykn/dependabot/cargo/cargo-7ceeae4f29
build(deps): bump the cargo group with 9 updates
2 parents 1efa287 + 7121b63 commit 9a331fe

File tree

6 files changed

+57
-47
lines changed

6 files changed

+57
-47
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ sps-net = { path = "sps-net" }
1717
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
20-
serde_json = "1.0.141" # Used across multiple crates
20+
serde_json = "1.0.142" # Used across multiple crates
2121
reqwest = { version = "0.12.22", features = ["json", "stream", "blocking"] } # Combined features from core, net, cli, common
22-
tokio = { version = "1.46.1", features = ["full"] } # Used across cli, core, net
22+
tokio = { version = "1.47.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
2525
semver = "1.0.26" # Used in common, core
@@ -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.1", features = ["read_core", "write_core", "macho"] } # Used in common, core (combined features)
31+
object = { version = "0.37.2", 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
@@ -9,14 +9,14 @@ license = "BSD-3-Clause"
99

1010
[dependencies]
1111
# Inherited from workspace
12-
serde_json = "1.0.141"
12+
serde_json = "1.0.142"
1313
directories = "6.0.0" # For user/system directories
1414
tracing = "0.1.41"
1515
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"
1919
reqwest = { version = "0.12.22", features = ["json", "stream", "blocking"] }
20-
object = { version = "0.37.1", features = ["read_core", "write_core", "macho"] }
20+
object = { version = "0.37.2", 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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ sps-net = "0.1.56"
1212
sps-common = "0.1.56"
1313

1414
anyhow = "1.0.98"
15-
uuid = { version = "1.17.0", features = ["v4"] }
15+
uuid = { version = "1.18.0", features = ["v4"] }
1616
plist = "1.7.4" # For reading Info.plist to get bundle ID
1717
thiserror = "2.0.12"
1818
serde = { version = "1.0.219", features = ["derive"] }
19-
serde_json = "1.0.141"
19+
serde_json = "1.0.142"
2020
env_logger = "0.11.8"
2121
semver = "1.0.26"
2222
dirs = "6.0.0"
@@ -27,24 +27,24 @@ url = "2.5.4"
2727
sha2 = "0.10.9"
2828
indicatif = "0.17.11"
2929
hex = "0.4.3"
30-
object = { version = "0.37.1", features = ["read_core", "write_core", "macho"] }
31-
tokio = { version = "1.46.1", features = ["full"] }
30+
object = { version = "0.37.2", features = ["read_core", "write_core", "macho"] }
31+
tokio = { version = "1.47.1", features = ["full"] }
3232
futures = "0.3.31"
3333
rand = "0.9.2"
3434
infer = "0.19.0"
3535
num_cpus = "1.17.0"
3636
humantime = "2.2.0"
3737
bitflags = { version = "2.9.1", features = ["serde"] }
3838
tracing = "0.1.41"
39-
devtools = "0.3.3"
39+
devtools = "0.3.4"
4040
which = "8.0.0"
41-
toml = "0.9.2"
41+
toml = "0.9.5"
4242
fs_extra = "1.3.0"
4343
git2 = "0.20.2"
4444
cmd_lib = "1.9.6"
4545
tempfile = "3.20.0"
4646
regex = "1.11.1"
47-
glob = "0.3.2"
47+
glob = "0.3.3"
4848
flate2 = "1.1.2"
4949
bzip2 = "0.6.0"
5050
tar = "0.4.44"

sps-net/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ license = "BSD-3-Clause"
1010
[dependencies]
1111
sps-common = "0.1.56"
1212

13-
tokio = { version = "1.46.1", features = ["full"] }
13+
tokio = { version = "1.47.1", features = ["full"] }
1414
futures = "0.3.31"
1515
reqwest = { version = "0.12.22", features = ["json", "stream", "blocking"] }
1616
serde = { version = "1.0.219", features = ["derive"] }
17-
serde_json = "1.0.141"
17+
serde_json = "1.0.142"
1818
rand = "0.9.2"
1919
url = "2.5.4"
2020
sha2 = "0.10.9"

sps/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ sps-core = "0.1.56"
2222
# Direct dependencies (previously workspace inherited)
2323
serde = { version = "1.0.219", features = ["derive"] }
2424
thiserror = "2.0.12"
25-
serde_json = "1.0.141"
25+
serde_json = "1.0.142"
2626
reqwest = { version = "0.12.22", features = ["json", "stream", "blocking"] }
27-
tokio = { version = "1.46.1", features = ["full"] }
27+
tokio = { version = "1.47.1", features = ["full"] }
2828
futures = "0.3.31"
2929
tracing = "0.1.41"
3030
walkdir = "2.5.0"
@@ -35,7 +35,7 @@ regex = "1.11.1"
3535
tempfile = "3.20.0"
3636

3737
# CLI specific dependencies
38-
clap = { version = "4.5.41", features = ["derive"] }
38+
clap = { version = "4.5.43", 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.55"
55+
clap_complete = "4.5.56"

0 commit comments

Comments
 (0)