Skip to content
This repository was archived by the owner on Sep 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ sps-net = { path = "sps-net" }
anyhow = "1.0.98"
thiserror = "2.0.12"
serde = { version = "1.0.219", features = ["derive"] } # Using the highest specified version and common features
serde_json = "1.0.140" # Used across multiple crates
serde_json = "1.0.141" # Used across multiple crates
reqwest = { version = "0.12.22", features = ["json", "stream", "blocking"] } # Combined features from core, net, cli, common
tokio = { version = "1.46.1", features = ["full"] } # Used across cli, core, net
futures = "0.3.31" # Used across cli, core, net
Expand All @@ -34,7 +34,7 @@ bitflags = { version = "2.9.1", features = ["serde"] } # Used in common, core (c
url = "2.5.4" # Used in core, net
sha2 = "0.10.9" # Used in core, net
hex = "0.4.3" # Used in core, net
rand = "0.9.1" # Used in core, net
rand = "0.9.2" # Used in core, net
infer = "0.19.0" # Used in core, net
tempfile = "3.20.0"

Expand Down
2 changes: 1 addition & 1 deletion sps-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "BSD-3-Clause"

[dependencies]
# Inherited from workspace
serde_json = "1.0.140"
serde_json = "1.0.141"
directories = "6.0.0" # For user/system directories
tracing = "0.1.41"
serde = { version = "1.0.219", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions sps-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ uuid = { version = "1.17.0", features = ["v4"] }
plist = "1.7.4" # For reading Info.plist to get bundle ID
thiserror = "2.0.12"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_json = "1.0.141"
env_logger = "0.11.8"
semver = "1.0.26"
dirs = "6.0.0"
Expand All @@ -30,7 +30,7 @@ hex = "0.4.3"
object = { version = "0.37.1", features = ["read_core", "write_core", "macho"] }
tokio = { version = "1.46.1", features = ["full"] }
futures = "0.3.31"
rand = "0.9.1"
rand = "0.9.2"
infer = "0.19.0"
num_cpus = "1.17.0"
humantime = "2.2.0"
Expand Down
4 changes: 2 additions & 2 deletions sps-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ tokio = { version = "1.46.1", features = ["full"] }
futures = "0.3.31"
reqwest = { version = "0.12.22", features = ["json", "stream", "blocking"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
rand = "0.9.1"
serde_json = "1.0.141"
rand = "0.9.2"
url = "2.5.4"
sha2 = "0.10.9"
hex = "0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion sps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ sps-core = "0.1.56"
# Direct dependencies (previously workspace inherited)
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "2.0.12"
serde_json = "1.0.140"
serde_json = "1.0.141"
reqwest = { version = "0.12.22", features = ["json", "stream", "blocking"] }
tokio = { version = "1.46.1", features = ["full"] }
futures = "0.3.31"
Expand Down
Loading