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

Commit e73689b

Browse files
authored
Merge pull request #65 from alexykn/dependabot/cargo/cargo-a6ffed6cfc
build(deps): bump the cargo group with 6 updates
2 parents 866d42a + 586e8aa commit e73689b

File tree

6 files changed

+56
-56
lines changed

6 files changed

+56
-56
lines changed

Cargo.lock

Lines changed: 38 additions & 38 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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ sps-net = { path = "sps-net" }
1515
# Shared dependencies defined once
1616
[workspace.dependencies]
1717
anyhow = "1.0.99"
18-
thiserror = "2.0.15"
18+
thiserror = "2.0.16"
1919
serde = { version = "1.0.219", features = ["derive"] } # Using the highest specified version and common features
20-
serde_json = "1.0.142" # Used across multiple crates
20+
serde_json = "1.0.143" # Used across multiple crates
2121
reqwest = { version = "0.12.23", features = ["json", "stream", "blocking"] } # Combined features from core, net, cli, common
2222
tokio = { version = "1.47.1", features = ["full"] } # Used across cli, core, net
2323
futures = "0.3.31" # Used across cli, core, net
@@ -30,13 +30,13 @@ env_logger = "0.11.8" # Used in cli, core
3030
num_cpus = "1.17.0" # Used in cli, core
3131
object = { version = "0.37.3", features = ["read_core", "write_core", "macho"] } # Used in common, core (combined features)
3232
humantime = "2.2.0" # Used in common, core
33-
bitflags = { version = "2.9.2", features = ["serde"] } # Used in common, core (combined features)
33+
bitflags = { version = "2.9.3", features = ["serde"] } # Used in common, core (combined features)
3434
url = "2.5.4" # Used in core, net
3535
sha2 = "0.10.9" # Used in core, net
3636
hex = "0.4.3" # Used in core, net
3737
rand = "0.9.2" # Used in core, net
3838
infer = "0.19.0" # Used in core, net
39-
tempfile = "3.20.0"
39+
tempfile = "3.21.0"
4040

4141

4242
# Workspace-wide release profile

sps-common/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ license = "BSD-3-Clause"
99

1010
[dependencies]
1111
# Inherited from workspace
12-
serde_json = "1.0.142"
12+
serde_json = "1.0.143"
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"
17-
bitflags = { version = "2.9.2", features = ["serde"] }
18-
thiserror = "2.0.15"
17+
bitflags = { version = "2.9.3", features = ["serde"] }
18+
thiserror = "2.0.16"
1919
reqwest = { version = "0.12.23", features = ["json", "stream", "blocking"] }
2020
object = { version = "0.37.3", features = ["read_core", "write_core", "macho"] }
2121
semver = { version = "1.0.26", features = ["serde"] }

sps-core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ sps-common = "0.1.56"
1414
anyhow = "1.0.99"
1515
uuid = { version = "1.18.0", features = ["v4"] }
1616
plist = "1.7.4" # For reading Info.plist to get bundle ID
17-
thiserror = "2.0.15"
17+
thiserror = "2.0.16"
1818
serde = { version = "1.0.219", features = ["derive"] }
19-
serde_json = "1.0.142"
19+
serde_json = "1.0.143"
2020
env_logger = "0.11.8"
2121
semver = "1.0.26"
2222
dirs = "6.0.0"
@@ -34,21 +34,21 @@ rand = "0.9.2"
3434
infer = "0.19.0"
3535
num_cpus = "1.17.0"
3636
humantime = "2.2.0"
37-
bitflags = { version = "2.9.2", features = ["serde"] }
37+
bitflags = { version = "2.9.3", features = ["serde"] }
3838
tracing = "0.1.41"
3939
devtools = "0.3.4"
4040
which = "8.0.0"
4141
toml = "0.9.5"
4242
fs_extra = "1.3.0"
4343
git2 = "0.20.2"
4444
cmd_lib = "1.9.6"
45-
tempfile = "3.20.0"
46-
regex = "1.11.1"
45+
tempfile = "3.21.0"
46+
regex = "1.11.2"
4747
glob = "0.3.3"
4848
flate2 = "1.1.2"
4949
bzip2 = "0.6.0"
5050
tar = "0.4.44"
51-
zip = "4.3.0" # Back to original zip crate
51+
zip = "4.5.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
@@ -14,7 +14,7 @@ tokio = { version = "1.47.1", features = ["full"] }
1414
futures = "0.3.31"
1515
reqwest = { version = "0.12.23", features = ["json", "stream", "blocking"] }
1616
serde = { version = "1.0.219", features = ["derive"] }
17-
serde_json = "1.0.142"
17+
serde_json = "1.0.143"
1818
rand = "0.9.2"
1919
url = "2.5.4"
2020
sha2 = "0.10.9"

0 commit comments

Comments
 (0)