forked from fortanix/rust-sgx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 1.47 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
[package]
name = "dcap-provider"
version = "0.1.0"
authors = ["Fortanix, Inc."]
edition = "2018"
license = "MPL-2.0"
description = """
DCAP quote provider using the Intel Trusted Services API as a backend.
This crate compiles into `libdcap_quoteprov.so`, which is needed as a backend
when using `libsgx_dcap_ql`.
To use this library, the dynamic linker needs to be able to find it. This means
you should install it in your system's library path or set the
`LD_LIBRARY_PATH` environment variable.
You must set your API key in the `OCP_APIM_SUBSCRIPTION_KEY` environment
variable. You can sign up for a service subscription at
https://api.portal.trustedservices.intel.com/.
SGX: Software Guard Extensions
DCAP: DataCenter Attestation Primitives
QL: Quoting Library
"""
repository = "https://github.com/fortanix/rust-sgx"
documentation = "https://edp.fortanix.com/docs/"
homepage = "https://edp.fortanix.com/"
keywords = ["sgx", "dcap", "quote", "pck"]
categories = ["api-bindings"]
[lib]
name = "dcap_quoteprov"
crate-type = ["cdylib"]
[dependencies]
# Project dependencies
"dcap-ql" = { version = "0.1.0", path = "../dcap-ql", features = ["link"] }
"report-test" = { version = "0.1.0", path = "../report-test" }
# External dependencies
byteorder = "1.1.0" # Unlicense/MIT
env_logger = "0.6" # MIT/Apache-2.0
lazy_static = "1" # MIT/Apache-2.0
log = "0.4" # MIT/Apache-2.0
reqwest = "0.9" # MIT/Apache-2.0
rustc-serialize = "0.3.24" # MIT/Apache-2.0