Skip to content

Commit e99740d

Browse files
authored
fix: bump minimal version requirements (#481)
Before these changes this fails: ``` cargo minimal-versions check --no-default-features --features aws_lc_rs ```
1 parent 50d15e0 commit e99740d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ features = ["rust_crypto"]
2424

2525
[dependencies]
2626
base64 = "0.22"
27-
serde = { version = "1.0", features = ["derive"] }
27+
serde = { version = "1.0.228", features = ["derive"] }
2828
serde_json = "1.0"
2929
signature = { version = "2.2.0", features = ["std"] }
3030

@@ -33,7 +33,7 @@ pem = { version = "3", optional = true }
3333
simple_asn1 = { version = "0.6", optional = true }
3434

3535
# "aws_lc_rs" feature
36-
aws-lc-rs = { version = "1.10.0", optional = true }
36+
aws-lc-rs = { version = "1.15.0", optional = true }
3737

3838
# "rust_crypto" feature
3939
ed25519-dalek = { version = "2.1.1", optional = true, features = ["pkcs8"] }

0 commit comments

Comments
 (0)