@@ -3,23 +3,16 @@ name = "dice-cert-check"
3
3
version = " 0.1.0"
4
4
edition = " 2021"
5
5
6
- # NOTE: We're currently using crates from the main development branch of the
7
- # rust crypto formats git repo. We do this because:
8
- # - const-oid doesn't have the OIDs from RFC 8410 in a release yet
9
- # - the latest x509-cert release has a bug that prevents us from consuming
10
- # PEM encoded certs. This has been fixed on the development branch but
11
- # hasn't made it into a release yet.
12
6
[dependencies ]
13
7
anyhow = { workspace = true , default-features = true }
14
8
clap = { workspace = true , default-features = true , features = [" derive" ] }
15
- const-oid = { git = " https://github.com/RustCrypto/formats " }
9
+ const-oid = { version = " 0.9.4 " , features = [ " db " ] }
16
10
env_logger = { workspace = true , default-features = true }
17
- ecdsa = { workspace = true , default-features = true }
18
11
hex = { workspace = true , default-features = true }
19
12
log = { workspace = true , default-features = true , features = [" std" ] }
20
13
p384 = { workspace = true , default-features = true }
21
- pem-rfc7468 = { git = " https://github.com/RustCrypto/formats " }
14
+ pem-rfc7468 = { workspace = true , default-features = true }
22
15
ring-compat = { workspace = true , default-features = true , features = [" std" ] }
23
16
sha2 = { workspace = true , default-features = true }
24
17
thiserror = { workspace = true , default-features = true }
25
- x509-cert = { git = " https://github.com/RustCrypto/formats " , features = [ " pem " , " std " ] }
18
+ x509-cert = { workspace = true , default- features = true , features = [ " pem " ] }
0 commit comments