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
68 changes: 39 additions & 29 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ 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.141" # Used across multiple crates
serde_json = "1.0.142" # 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
tokio = { version = "1.47.1", features = ["full"] } # Used across cli, core, net
futures = "0.3.31" # Used across cli, core, net
tracing = "0.1.41" # Used across cli, common, core, net
semver = "1.0.26" # Used in common, core
Expand All @@ -28,7 +28,7 @@ walkdir = "2.5.0" # Used in cli, core (using highest version)
indicatif = "0.17.11" # Used in cli, core (using highest version)
env_logger = "0.11.8" # Used in cli, core
num_cpus = "1.17.0" # Used in cli, core
object = { version = "0.37.1", features = ["read_core", "write_core", "macho"] } # Used in common, core (combined features)
object = { version = "0.37.2", features = ["read_core", "write_core", "macho"] } # Used in common, core (combined features)
humantime = "2.2.0" # Used in common, core
bitflags = { version = "2.9.1", features = ["serde"] } # Used in common, core (combined features)
url = "2.5.4" # Used in core, net
Expand Down
4 changes: 2 additions & 2 deletions sps-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ license = "BSD-3-Clause"

[dependencies]
# Inherited from workspace
serde_json = "1.0.141"
serde_json = "1.0.142"
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.1", features = ["serde"] }
thiserror = "2.0.12"
reqwest = { version = "0.12.22", features = ["json", "stream", "blocking"] }
object = { version = "0.37.1", features = ["read_core", "write_core", "macho"] }
object = { version = "0.37.2", features = ["read_core", "write_core", "macho"] }
semver = { version = "1.0.26", features = ["serde"] }
git2 = "0.20.2"
14 changes: 7 additions & 7 deletions sps-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ sps-net = "0.1.56"
sps-common = "0.1.56"

anyhow = "1.0.98"
uuid = { version = "1.17.0", features = ["v4"] }
uuid = { version = "1.18.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.141"
serde_json = "1.0.142"
env_logger = "0.11.8"
semver = "1.0.26"
dirs = "6.0.0"
Expand All @@ -27,24 +27,24 @@ url = "2.5.4"
sha2 = "0.10.9"
indicatif = "0.17.11"
hex = "0.4.3"
object = { version = "0.37.1", features = ["read_core", "write_core", "macho"] }
tokio = { version = "1.46.1", features = ["full"] }
object = { version = "0.37.2", features = ["read_core", "write_core", "macho"] }
tokio = { version = "1.47.1", features = ["full"] }
futures = "0.3.31"
rand = "0.9.2"
infer = "0.19.0"
num_cpus = "1.17.0"
humantime = "2.2.0"
bitflags = { version = "2.9.1", features = ["serde"] }
tracing = "0.1.41"
devtools = "0.3.3"
devtools = "0.3.4"
which = "8.0.0"
toml = "0.9.2"
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"
glob = "0.3.2"
glob = "0.3.3"
flate2 = "1.1.2"
bzip2 = "0.6.0"
tar = "0.4.44"
Expand Down
4 changes: 2 additions & 2 deletions sps-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ license = "BSD-3-Clause"
[dependencies]
sps-common = "0.1.56"

tokio = { version = "1.46.1", features = ["full"] }
tokio = { version = "1.47.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.141"
serde_json = "1.0.142"
rand = "0.9.2"
url = "2.5.4"
sha2 = "0.10.9"
Expand Down
8 changes: 4 additions & 4 deletions sps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ 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.141"
serde_json = "1.0.142"
reqwest = { version = "0.12.22", features = ["json", "stream", "blocking"] }
tokio = { version = "1.46.1", features = ["full"] }
tokio = { version = "1.47.1", features = ["full"] }
futures = "0.3.31"
tracing = "0.1.41"
walkdir = "2.5.0"
Expand All @@ -35,7 +35,7 @@ regex = "1.11.1"
tempfile = "3.20.0"

# CLI specific dependencies
clap = { version = "4.5.41", features = ["derive"] }
clap = { version = "4.5.43", features = ["derive"] }
colored = "3.0.0"
spinners = "4.1.1"
dialoguer = "0.11.0"
Expand All @@ -52,4 +52,4 @@ ratatui = "0.29.0"
crossterm = "0.29.0"

[build-dependencies]
clap_complete = "4.5.55"
clap_complete = "4.5.56"
Loading