This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Cargo.toml
62 lines (59 loc) · 1.83 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[workspace]
members = [
"chain-util",
"chain-abci",
"chain-core",
"chain-storage",
"chain-tx-filter",
"chain-tx-validation",
"client-cli",
"client-common",
"client-core",
"client-network",
"client-rpc",
"client-rpc/server",
"test-common",
"dev-utils",
"enclave-protocol",
"chain-tx-enclave-next/enclave-utils",
"chain-tx-enclave-next/enclave-ra/ra-client",
"chain-tx-enclave-next/enclave-ra/ra-common",
"chain-tx-enclave-next/enclave-ra/ra-enclave",
"chain-tx-enclave-next/enclave-ra/ra-sp-client",
"chain-tx-enclave-next/enclave-ra/ra-sp-server",
"chain-tx-enclave-next/tdbe/tdbe-common",
"chain-tx-enclave-next/tdbe/enclave-app",
"chain-tx-enclave-next/tx-query-next/enclave-app",
"chain-tx-enclave-next/tx-validation-next",
"chain-tx-enclave/mock-utils",
"chain-tx-enclave-next/mls",
"cro-clib",
"integration-tests/rust_tests/test_cert_expiration",
]
default-members = [
"chain-util",
"chain-abci",
"chain-core",
"chain-storage",
"chain-tx-filter",
"chain-tx-validation",
"client-cli",
"client-common",
"client-core",
"client-network",
"client-rpc",
"client-rpc/server",
"test-common",
"dev-utils",
"enclave-protocol",
"chain-tx-enclave-next/enclave-ra/ra-sp-server",
"chain-tx-enclave-next/enclave-utils",
"chain-tx-enclave-next/mls",
"cro-clib",
]
[patch.crates-io]
ring = { git = "https://github.com/crypto-com/ring.git", rev = "493eb07f3a7118870867093bf934f1e37a1aa602" }
# FIXME: use upstream when merged
sha2 = { git = "https://github.com/crypto-com/hashes.git", rev = "289d5b76f2163a3808010341ed1df3cb156d97e1" }
# FIXME: before official spec has a solution
hpke = { git = "https://github.com/crypto-com/rust-hpke.git", rev = "858d6433525529a6189382a8bd2f46d51959bdfa" }