forked from project-oak/tink-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (43 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
members = [
"aead",
"core",
"daead",
"examples/aead",
"examples/daead",
"examples/hybrid",
"examples/keygen",
"examples/keymgr",
"examples/kms",
"examples/mac",
"examples/prf",
"examples/signature",
"examples/streaming",
"hybrid",
"integration/awskms",
"integration/gcpkms",
"mac",
"prf",
"proto",
"rinkey",
"signature",
"streaming",
"tests",
"testing",
]
# Patch dependencies on tink crates so that they refer to the versions within this same repository.
[patch.crates-io]
rinkey = { path = "rinkey" }
tink-aead = { path = "aead" }
tink-awskms = { path = "integration/awskms" }
tink-core = { path = "core" }
tink-daead = { path = "daead" }
tink-gcpkms = { path = "integration/gcpkms" }
tink-hybrid = { path = "hybrid" }
tink-mac = { path = "mac" }
tink-prf = { path = "prf" }
tink-proto = { path = "proto" }
tink-signature = { path = "signature" }
tink-streaming-aead = { path = "streaming" }
tink-tests = { path = "tests" }
tink-testing-server = { path = "testing" }