-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (47 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
[workspace]
members = [
"frame/enclave",
"frame/host",
"frame/common",
"frame/types",
"frame/treekem",
"frame/sodium",
"frame/runtime",
"frame/remote-attestation",
"frame/mra-tls",
"frame/retrier",
"frame/config",
"frame/azure-client",
"modules/anonify-enclave",
"modules/anonify-eth-driver",
"modules/anonify-ecall-types",
"modules/key-vault-enclave",
"modules/key-vault-host",
"modules/key-vault-ecall-types",
"modules/occlum-enclave",
"modules/occlum-host",
"modules/encrypted-sql-ops-enclave",
"modules/encrypted-sql-ops-host",
"modules/encrypted-sql-ops-ecall-types",
"nodes/key-vault",
"nodes/state-runtime/api",
"nodes/state-runtime/server",
"example/erc20/cli",
"example/erc20/enclave",
"example/erc20/server",
"example/key-vault/enclave",
"example/key-vault/server",
"example/occlum/rpc-types",
"example/occlum/enclave",
"example/occlum/host",
"example/encrypted-sql-ops/enclave",
"example/wallet",
"tests/integration",
"tests/units/enclave",
"tests/units/host",
"tests/utils",
]
exclude = [
# If adding this to workspace, top-level `cargo check` needs `pgx` installed and initialized.
"example/encrypted-sql-ops/pg-extension",
]