@@ -10,6 +10,17 @@ keywords = ["cryptography", "tink", "testing"]
10
10
categories = [" cryptography" ]
11
11
publish = false
12
12
13
+ [features ]
14
+ default = [" kms" ]
15
+ # The `tink-awskms` crates indirectly depend on OpenSSL, which cannot be linked at the
16
+ # same time as BoringSSL. Switch to BoringSSL mode with
17
+ # --no-default-features --features boringssl
18
+ #
19
+ # Note that this means that the features of this crate are *not* additive; turning on
20
+ # --all-features results in link failures.
21
+ boringssl = [" tink-daead/boringssl" ]
22
+ kms = [" tink-awskms" , " tink-gcpkms" ]
23
+
13
24
[dependencies ]
14
25
base64 = " ^0.13"
15
26
ed25519-dalek = " ^1.0.1"
@@ -21,9 +32,11 @@ rand = "^0.7"
21
32
regex = " ^1.5.4"
22
33
serde = { version = " ^1.0.126" , features = [" derive" ] }
23
34
serde_json = " ^1.0.64"
24
- tink-core = { version = " ^0.2" , features = [" insecure" , " json" ] }
25
35
tink-aead = " ^0.2"
36
+ tink-awskms = { version = " ^0.2" , optional = true }
37
+ tink-core = { version = " ^0.2" , features = [" insecure" , " json" ] }
26
38
tink-daead = " ^0.2"
39
+ tink-gcpkms = { version = " ^0.2" , optional = true }
27
40
tink-mac = " ^0.2"
28
41
tink-proto = " ^0.2"
29
42
@@ -34,10 +47,11 @@ lazy_static = "^1.4"
34
47
maplit = " ^1.0.2"
35
48
tempfile = " ^3.2"
36
49
tink-aead = " ^0.2"
37
- tink-awskms = " ^0.2"
38
50
tink-daead = " ^0.2"
39
- tink-gcpkms = " ^0.2"
40
51
tink-mac = " ^0.2"
41
52
tink-prf = " ^0.2"
42
53
tink-signature = " ^0.2"
43
54
tink-streaming-aead = " ^0.2"
55
+
56
+ [package .metadata .cargo-udeps .ignore ]
57
+ normal = [" tink-awskms" , " tink-gcpkms" ]
0 commit comments