1
1
[package ]
2
2
name = " spki"
3
- version = " 0.7.0-pre "
3
+ version = " 0.7.0"
4
4
description = """
5
5
X.509 Subject Public Key Info (RFC5280) describing public keys as well as their
6
6
associated AlgorithmIdentifiers (i.e. OIDs)
@@ -18,8 +18,8 @@ rust-version = "1.65"
18
18
der = { version = " 0.7" , features = [" oid" ], path = " ../der" }
19
19
20
20
# Optional dependencies
21
- arbitrary = { version = " 1.2.3 " , features = [" derive" ], optional = true }
22
- base64ct = { version = " 1" , path = " ../base64ct " , optional = true , default-features = false }
21
+ arbitrary = { version = " 1.2" , features = [" derive" ], optional = true }
22
+ base64ct = { version = " 1" , optional = true , default-features = false , path = " ../base64ct " }
23
23
sha2 = { version = " 0.10" , optional = true , default-features = false }
24
24
25
25
[dev-dependencies ]
@@ -28,10 +28,12 @@ tempfile = "3"
28
28
29
29
[features ]
30
30
alloc = [" base64ct?/alloc" , " der/alloc" ]
31
+ std = [" der/std" , " alloc" ]
32
+
31
33
arbitrary = [" std" , " dep:arbitrary" , " der/arbitrary" ]
34
+ base64 = [" dep:base64ct" ]
32
35
fingerprint = [" sha2" ]
33
36
pem = [" alloc" , " der/pem" ]
34
- std = [" der/std" , " alloc" ]
35
37
36
38
[package .metadata .docs .rs ]
37
39
all-features = true
0 commit comments