Skip to content

Commit bc49ee9

Browse files
committed
chore: simplify dependency version specs and update deps
1 parent e0dfcb6 commit bc49ee9

2 files changed

Lines changed: 32 additions & 32 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,23 +38,23 @@ _crypto-common = ["dep:der", "dep:pkcs8", "dep:sec1", "dep:signature", "dep:spki
3838
rcgen = ["dep:rcgen", "aws-lc-rs"]
3939

4040
[dependencies]
41-
log = "0.4.29"
41+
log = "0.4"
4242
nom = { version = "8", default-features = false, features = ["std"] }
43-
once_cell = "1.21.3"
43+
once_cell = "1"
4444
rand = "0.9"
4545
time = { version = "0.3", features = ["formatting"] }
46-
arrayvec = "0.7.6"
47-
subtle = "2.6"
46+
arrayvec = "0.7"
47+
subtle = "2"
4848

4949
der = { version = "0.7", optional = true }
5050
pkcs8 = { version = "0.10", features = ["pem"], optional = true }
5151
sec1 = { version = "0.7", optional = true }
52-
signature = { version = "2.2", optional = true }
52+
signature = { version = "2", optional = true }
5353
spki = { version = "0.7", optional = true }
5454
x509-cert = { version = "0.2", default-features = false, optional = true }
5555

5656
# aws-lc-rs backend
57-
aws-lc-rs = { version = "^1.16", default-features = false, features = ["aws-lc-sys", "prebuilt-nasm"], optional = true }
57+
aws-lc-rs = { version = "1", default-features = false, features = ["aws-lc-sys", "prebuilt-nasm"], optional = true }
5858

5959
# RustCrypto backend
6060
aes-gcm = { version = "0.10", optional = true }
@@ -71,15 +71,15 @@ chacha20 = { version = "0.9", optional = true }
7171
x25519-dalek = { version = "2", optional = true, features = ["static_secrets"] }
7272

7373
# certificate generation
74-
rcgen = { version = "0.14.7", default-features = false, features = ["aws_lc_rs"], optional = true }
74+
rcgen = { version = "0.14", default-features = false, features = ["aws_lc_rs"], optional = true }
7575

7676
[dev-dependencies]
77-
openssl = { version = "0.10.75", features = ["vendored"] }
77+
openssl = { version = "0.10", features = ["vendored"] }
7878
libc = "0.2"
79-
env_logger = "0.11.9"
79+
env_logger = "0.11"
8080
x509-parser = "0.18"
8181
bytes = "1"
8282

8383
# wolfssl doesn't build on Windows
8484
[target.'cfg(not(windows))'.dev-dependencies]
85-
wolfssl = "3.0.0"
85+
wolfssl = "3"

0 commit comments

Comments
 (0)