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
76 changes: 38 additions & 38 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ sps-net = { path = "sps-net" }
# Shared dependencies defined once
[workspace.dependencies]
anyhow = "1.0.99"
thiserror = "2.0.15"
thiserror = "2.0.16"
serde = { version = "1.0.219", features = ["derive"] } # Using the highest specified version and common features
serde_json = "1.0.142" # Used across multiple crates
serde_json = "1.0.143" # Used across multiple crates
reqwest = { version = "0.12.23", features = ["json", "stream", "blocking"] } # Combined features from core, net, cli, common
tokio = { version = "1.47.1", features = ["full"] } # Used across cli, core, net
futures = "0.3.31" # Used across cli, core, net
Expand All @@ -30,13 +30,13 @@ env_logger = "0.11.8" # Used in cli, core
num_cpus = "1.17.0" # Used in cli, core
object = { version = "0.37.3", features = ["read_core", "write_core", "macho"] } # Used in common, core (combined features)
humantime = "2.2.0" # Used in common, core
bitflags = { version = "2.9.2", features = ["serde"] } # Used in common, core (combined features)
bitflags = { version = "2.9.3", features = ["serde"] } # Used in common, core (combined features)
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.2" # Used in core, net
infer = "0.19.0" # Used in core, net
tempfile = "3.20.0"
tempfile = "3.21.0"


# Workspace-wide release profile
Expand Down
6 changes: 3 additions & 3 deletions sps-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ license = "BSD-3-Clause"

[dependencies]
# Inherited from workspace
serde_json = "1.0.142"
serde_json = "1.0.143"
directories = "6.0.0" # For user/system directories
tracing = "0.1.41"
serde = { version = "1.0.219", features = ["derive"] }
humantime = "2.2.0"
bitflags = { version = "2.9.2", features = ["serde"] }
thiserror = "2.0.15"
bitflags = { version = "2.9.3", features = ["serde"] }
thiserror = "2.0.16"
reqwest = { version = "0.12.23", features = ["json", "stream", "blocking"] }
object = { version = "0.37.3", features = ["read_core", "write_core", "macho"] }
semver = { version = "1.0.26", features = ["serde"] }
Expand Down
12 changes: 6 additions & 6 deletions sps-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ sps-common = "0.1.56"
anyhow = "1.0.99"
uuid = { version = "1.18.0", features = ["v4"] }
plist = "1.7.4" # For reading Info.plist to get bundle ID
thiserror = "2.0.15"
thiserror = "2.0.16"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
serde_json = "1.0.143"
env_logger = "0.11.8"
semver = "1.0.26"
dirs = "6.0.0"
Expand All @@ -34,21 +34,21 @@ rand = "0.9.2"
infer = "0.19.0"
num_cpus = "1.17.0"
humantime = "2.2.0"
bitflags = { version = "2.9.2", features = ["serde"] }
bitflags = { version = "2.9.3", features = ["serde"] }
tracing = "0.1.41"
devtools = "0.3.4"
which = "8.0.0"
toml = "0.9.5"
fs_extra = "1.3.0"
git2 = "0.20.2"
cmd_lib = "1.9.6"
tempfile = "3.20.0"
regex = "1.11.1"
tempfile = "3.21.0"
regex = "1.11.2"
glob = "0.3.3"
flate2 = "1.1.2"
bzip2 = "0.6.0"
tar = "0.4.44"
zip = "4.3.0" # Back to original zip crate
zip = "4.5.0" # Back to original zip crate
chrono = { version = "0.4.41", features = ["serde"] }
async-recursion = "1.1.1"
crossbeam-channel = "0.5.15"
Expand Down
2 changes: 1 addition & 1 deletion sps-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tokio = { version = "1.47.1", features = ["full"] }
futures = "0.3.31"
reqwest = { version = "0.12.23", features = ["json", "stream", "blocking"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
serde_json = "1.0.143"
rand = "0.9.2"
url = "2.5.4"
sha2 = "0.10.9"
Expand Down
Loading
Loading