Skip to content

Commit af5d368

Browse files
committed
workspace: update dependencies
Some of these weren't correctly upgraded yesterday, like aws-sdk-s3. Not sure why `cargo upgrade` didn't work.
1 parent e0bd8c7 commit af5d368

File tree

11 files changed

+24
-16
lines changed

11 files changed

+24
-16
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apfs-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bitflags = "2.6.0"
1515
bytes = { version = "1.8.0", optional = true, default-features = false }
1616
chrono = { version = "0.4.38", default-features = false }
1717
num_enum = { version = "0.7.3", features = ["complex-expressions"] }
18-
thiserror = "1.0.66"
18+
thiserror = "1.0.67"
1919

2020
[dependencies.apfs-derive]
2121
path = "../apfs-derive"

app-store-connect/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
Released on ReleaseDate.
88

9+
* `clap` 4.4 -> 4.5.
10+
* `jsonwebtoken` 9.2 -> 9.3.
11+
912
## 0.6.0
1013

1114
Released on 2024-11-03.

app-store-connect/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ readme = "README.md"
1313
[dependencies]
1414
anyhow = "1.0.92"
1515
base64 = "0.22.1"
16-
clap = { version = "4.4.18", features = ["derive"] }
16+
clap = { version = "4.5.20", features = ["derive"] }
1717
dirs = "5.0.1"
1818
env_logger = "0.11.5"
19-
jsonwebtoken = "9.2.0"
19+
jsonwebtoken = "9.3.0"
2020
log = "0.4.22"
2121
pem = "3.0.4"
2222
rand = "0.8.5"
2323
reqwest = { version = "0.12.9", default-features = false, features = ["blocking", "http2", "json", "rustls-tls-native-roots"] }
2424
rsa = "0.9.6"
2525
serde = { version = "1.0.214", features = ["derive"] }
2626
serde_json = "1.0.132"
27-
thiserror = "1.0.66"
27+
thiserror = "1.0.67"
2828
x509-certificate = "0.24.0"

apple-bom/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
Released on ReleaseDate.
88

9+
* `clap` 4.4 -> 4.5.
10+
911
## 0.3.0
1012

1113
Released on 2024-11-03.

apple-bom/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ name = "odumpbom"
1616
path = "src/dumpbom.rs"
1717

1818
[dependencies]
19-
clap = "4.4.18"
19+
clap = "4.5.20"
2020
chrono = "0.4.38"
2121
crc32fast = "1.4.2"
2222
hex = "0.4.3"
2323
scroll = { version = "0.12.0", features = ["derive"] }
2424
simple-file-manifest = "0.11.0"
25-
thiserror = "1.0.66"
25+
thiserror = "1.0.67"

apple-codesign/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
Released on ReleaseDate.
88

9+
* `aws-sdk-s3` 1.24 -> 1.59.
10+
* `clap` 4.4 -> 4.5.
11+
912
## 0.28.0
1013

1114
Released on 2024-11-03.

apple-codesign/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ path = "src/main.rs"
1818
[dependencies]
1919
anyhow = "1.0.92"
2020
aws-config = { version = "1.5.9", optional = true }
21-
aws-sdk-s3 = { version = "1.24.0", optional = true }
21+
aws-sdk-s3 = { version = "1.59.0", optional = true }
2222
aws-smithy-http = { version = "0.60.11", optional = true }
2323
aws-smithy-types = { version = "1.2.8", optional = true }
2424
base64 = "0.22.1"
2525
bcder = "0.7.4"
2626
bitflags = "2.6.0"
2727
bytes = "1.8.0"
28-
clap = { version = "4.4.18", features = ["derive"] }
28+
clap = { version = "4.5.20", features = ["derive"] }
2929
chrono = "0.4.38"
3030
cryptographic-message-syntax = "0.27.0"
3131
der = { version = "0.7.9", features = ["alloc"] }
@@ -72,7 +72,7 @@ spake2 = "0.4.0"
7272
spki = { version = "0.7.3", features = ["pem"] }
7373
subtle = "2.6.1"
7474
tempfile = "3.13.0"
75-
thiserror = "1.0.66"
75+
thiserror = "1.0.67"
7676
tokio = { version = "1.41.0", features = ["rt"] }
7777
tungstenite = { version = "0.24.0", features = ["rustls-tls-native-roots"] }
7878
uuid = { version = "1.11.0", features = ["v4"] }

apple-flat-package/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ flate2 = "1.0.34"
1616
scroll = { version = "0.12.0", features = ["derive"] }
1717
serde-xml-rs = "0.6.0"
1818
serde = { version = "1.0.214", features = ["derive"] }
19-
thiserror = "1.0.66"
19+
thiserror = "1.0.67"
2020

2121
[dependencies.apple-xar]
2222
path = "../apple-xar"

apple-xar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ serde = { version = "1.0.214", features = ["derive"] }
2929
sha1 = "0.10.6"
3030
sha2 = "0.10.8"
3131
signature = { version = "2.2.0", features = ["std"], optional = true }
32-
thiserror = "1.0.66"
32+
thiserror = "1.0.67"
3333
url = "2.5.2"
3434
xml-rs = "0.8.22"
3535
x509-certificate = "0.24.0"

0 commit comments

Comments
 (0)