Skip to content

Commit

Permalink
workspace: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
indygreg committed Nov 29, 2024
1 parent 71405b2 commit b3b3c2a
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion 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 apfs-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ proc-macro = true

[dependencies]
indoc = "2.0.5"
proc-macro2 = "1.0.89"
syn = { version = "2.0.87", features = ["extra-traits", "full"] }
proc-macro2 = "1.0.92"
syn = { version = "2.0.89", features = ["extra-traits", "full"] }
quote = "1.0.37"
2 changes: 1 addition & 1 deletion apfs-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/indygreg/apple-platform-rs.git"

[dependencies]
bitflags = "2.6.0"
bytes = { version = "1.8.0", optional = true, default-features = false }
bytes = { version = "1.9.0", optional = true, default-features = false }
chrono = { version = "0.4.38", default-features = false }
num_enum = { version = "0.7.3", features = ["complex-expressions"] }
thiserror = "2.0.3"
Expand Down
8 changes: 4 additions & 4 deletions app-store-connect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ readme = "README.md"
[dependencies]
anyhow = "1.0.93"
base64 = "0.22.1"
clap = { version = "4.5.20", features = ["derive"] }
clap = { version = "4.5.21", features = ["derive"] }
dirs = "5.0.1"
env_logger = "0.11.5"
jsonwebtoken = "9.3.0"
log = "0.4.22"
pem = "3.0.4"
rand = "0.8.5"
reqwest = { version = "0.12.9", default-features = false, features = ["blocking", "http2", "json", "rustls-tls-native-roots"] }
rsa = "0.9.6"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
rsa = "0.9.7"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
thiserror = "2.0.3"
x509-certificate = "0.24.0"
2 changes: 1 addition & 1 deletion apple-bom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name = "odumpbom"
path = "src/dumpbom.rs"

[dependencies]
clap = "4.5.20"
clap = "4.5.21"
chrono = "0.4.38"
crc32fast = "1.4.2"
hex = "0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion apple-bundles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ simple-file-manifest = "0.11.0"
walkdir = "2.5.0"

[dev-dependencies]
tempfile = "3.13.0"
tempfile = "3.14.0"
24 changes: 12 additions & 12 deletions apple-codesign/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ path = "src/main.rs"
[dependencies]
anyhow = "1.0.93"
aws-config = { version = "1.5.10", optional = true }
aws-sdk-s3 = { version = "1.60.0", optional = true }
aws-sdk-s3 = { version = "1.63.0", optional = true }
aws-smithy-http = { version = "0.60.11", optional = true }
aws-smithy-types = { version = "1.2.9", optional = true }
base64 = "0.22.1"
bcder = "0.7.4"
bitflags = "2.6.0"
bytes = "1.8.0"
clap = { version = "4.5.20", features = ["derive"] }
bytes = "1.9.0"
clap = { version = "4.5.21", features = ["derive"] }
chrono = "0.4.38"
cryptographic-message-syntax = "0.27.0"
der = { version = "0.7.9", features = ["alloc"] }
Expand Down Expand Up @@ -59,21 +59,21 @@ rayon = "1.10.0"
regex = "1.11.1"
reqwest = { version = "0.12.9", default-features = false, features = ["blocking", "http2", "json", "rustls-tls-native-roots"] }
ring = "0.17.8"
rsa = "0.9.6"
rsa = "0.9.7"
scroll = "0.12.0"
sha2 = "0.10.8"
semver = "1.0.23"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
signature = { version = "2.2.0", features = ["std"] }
simple-file-manifest = "0.11.0"
spake2 = "0.4.0"
spki = { version = "0.7.3", features = ["pem"] }
subtle = "2.6.1"
tempfile = "3.13.0"
tempfile = "3.14.0"
thiserror = "2.0.3"
tokio = { version = "1.41.0", features = ["rt"] }
tokio = { version = "1.41.1", features = ["rt"] }
tungstenite = { version = "0.24.0", features = ["rustls-tls-native-roots"] }
uuid = { version = "1.11.0", features = ["v4"] }
walkdir = "2.5.0"
Expand All @@ -83,7 +83,7 @@ xml-rs = "0.8.23"
yasna = "0.5.2"
yubikey = { version = "0.8.0", optional = true, features = ["untested"] }
zeroize = { version = "1.8.1", features = ["zeroize_derive"] }
zip = { version = "2.2.0", default-features = false, features = ["deflate"] }
zip = { version = "2.2.1", default-features = false, features = ["deflate"] }
zip_structs = "0.2.1"

[dependencies.app-store-connect]
Expand All @@ -105,19 +105,19 @@ version = "0.19.0"

[target.'cfg(target_os = "macos")'.dependencies]
security-framework = { version = "2.11.1", features = ["OSX_10_12"] }
security-framework-sys = { version = "2.12.0", features = ["OSX_10_12"] }
security-framework-sys = { version = "2.12.1", features = ["OSX_10_12"] }

[target.'cfg(target_os = "windows")'.dependencies]
widestring = { version = "1.1.0" }
windows-sys = { version = "0.59.0", features = ["Win32_Foundation", "Win32_Security_Cryptography"] }

[dev-dependencies]
flate2 = "1.0.34"
flate2 = "1.0.35"
indoc = "2.0.5"
simple-file-manifest = "0.11.0"
tar = "0.4.43"
trycmd-indygreg-fork = "0.14.20"
zip = { version = "2.2.0", default-features = false }
zip = { version = "2.2.1", default-features = false }

[features]
default = ["notarize"]
Expand Down
4 changes: 2 additions & 2 deletions apple-dmg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ anyhow = "1.0.93"
byteorder = "1.5.0"
crc32fast = "1.4.2"
fatfs = "0.3.6"
flate2 = "1.0.34"
flate2 = "1.0.35"
fscommon = "0.1.1"
getrandom = "0.2.15"
gpt = "4.0.0"
md5 = "0.7.0"
plist = "1.7.0"
serde = { version = "1.0.214", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_bytes = "0.11.15"
4 changes: 2 additions & 2 deletions apple-flat-package/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ repository = "https://github.com/indygreg/apple-platform-rs.git"
readme = "README.md"

[dependencies]
flate2 = "1.0.34"
flate2 = "1.0.35"
scroll = { version = "0.12.0", features = ["derive"] }
serde-xml-rs = "0.6.0"
serde = { version = "1.0.214", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
thiserror = "2.0.3"

[dependencies.apple-xar]
Expand Down
4 changes: 2 additions & 2 deletions apple-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ homepage = "https://github.com/indygreg/apple-platform-rs"
repository = "https://github.com/indygreg/apple-platform-rs.git"

[dependencies]
serde_json = { version = "1.0.132", optional = true }
serde = { version = "1.0.214", optional = true, features = ["derive"] }
serde_json = { version = "1.0.133", optional = true }
serde = { version = "1.0.215", optional = true, features = ["derive"] }
plist = { version = "1.7.0", optional = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions apple-xar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ cryptographic-message-syntax = { version = "0.27.0", optional = true }
digest = "0.10.7"
log = "0.4.22"
md-5 = "0.10.6"
flate2 = "1.0.34"
flate2 = "1.0.35"
rand = { version = "0.8.5", optional = true }
reqwest = { version = "0.12.9", default-features = false, optional = true }
scroll = { version = "0.12.0", features = ["derive"] }
serde-xml-rs = "0.6.0"
serde = { version = "1.0.214", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
sha1 = "0.10.6"
sha2 = "0.10.8"
signature = { version = "2.2.0", features = ["std"], optional = true }
thiserror = "2.0.3"
url = "2.5.3"
url = "2.5.4"
xml-rs = "0.8.23"
x509-certificate = "0.24.0"
xz2 = { version = "0.1.7", features = ["static"] }
Expand Down

0 comments on commit b3b3c2a

Please sign in to comment.