diff --git a/Cargo.lock b/Cargo.lock index 5a78b54..5a49984 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3682,9 +3682,9 @@ dependencies = [ [[package]] name = "rand" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" +checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ "rand_chacha 0.9.0", "rand_core 0.9.3", @@ -4135,9 +4135,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.140" +version = "1.0.141" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" +checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3" dependencies = [ "indexmap 2.9.0", "itoa 1.0.15", @@ -4492,7 +4492,7 @@ dependencies = [ "num_cpus", "object 0.37.1", "plist", - "rand 0.9.1", + "rand 0.9.2", "regex", "reqwest", "semver", @@ -4525,7 +4525,7 @@ dependencies = [ "hex", "infer 0.19.0", "oci-distribution", - "rand 0.9.1", + "rand 0.9.2", "reqwest", "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 746acb1..733612a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 @@ -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" diff --git a/sps-common/Cargo.toml b/sps-common/Cargo.toml index cf32fc9..36d047a 100644 --- a/sps-common/Cargo.toml +++ b/sps-common/Cargo.toml @@ -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"] } diff --git a/sps-core/Cargo.toml b/sps-core/Cargo.toml index 43761b8..b30e47d 100644 --- a/sps-core/Cargo.toml +++ b/sps-core/Cargo.toml @@ -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" @@ -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" diff --git a/sps-net/Cargo.toml b/sps-net/Cargo.toml index 78af73c..da1b5bb 100644 --- a/sps-net/Cargo.toml +++ b/sps-net/Cargo.toml @@ -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" diff --git a/sps/Cargo.toml b/sps/Cargo.toml index 3258931..2faba17 100644 --- a/sps/Cargo.toml +++ b/sps/Cargo.toml @@ -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"