forked from Azure/iot-identity-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (47 loc) · 1.12 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 = [
"aziotctl",
"aziotctl/aziotctl-common",
"aziotd",
"cert/aziot-cert-client-async",
"cert/aziot-cert-common",
"cert/aziot-cert-common-http",
"cert/aziot-certd",
"cert/cert-renewal",
"config-common",
"http-common",
"identity/aziot-cloud-client-async",
"identity/aziot-identity-client-async",
"identity/aziot-identity-common",
"identity/aziot-identity-common-http",
"identity/aziot-identityd",
"identity/mock-iot-server",
"key/aziot-key-client",
"key/aziot-key-client-async",
"key/aziot-key-common",
"key/aziot-key-common-http",
"key/aziot-keyd",
"key/aziot-key-openssl-engine",
"key/aziot-key-openssl-engine-shared",
"key/aziot-key-openssl-engine-shared-test",
"key/aziot-keys",
"key/aziot-keys-common",
"mini-sntp",
"openssl2",
"openssl-build",
"openssl-sys2",
"pkcs11/pkcs11",
"pkcs11/pkcs11-sys",
"test-common",
"tpm/aziot-tpm-client-async",
"tpm/aziot-tpm-common-http",
"tpm/aziot-tpm-common",
"tpm/aziot-tpm-rs",
"tpm/aziot-tpm-sys",
"tpm/aziot-tpmd",
]
# Don't let panics from callbacks cross FFI boundary
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"