-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
29 lines (24 loc) · 917 Bytes
/
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
[package]
name = "dcap-rs"
license = "Apache-2.0"
version = "0.1.0"
edition = "2021"
description = "Intel Data Center Attestation Primitives (DCAP) Quote Verification Library (QVL) implemented in pure Rust."
repository = "https://github.com/automata-network/dcap-rs"
keywords = ["dcap", "intel", "quote", "attestation", "sgx", "rust", "library"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["lib"]
[dependencies]
hex = { version = "0.4" }
x509-parser = { version = "0.15.1" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
chrono = { version = "0.4" }
time = { version = "0.3.36" }
p256 = { version = "0.13.2" }
sha2 = { version = "0.10.8" }
sha3 = { version = "0.10.8" }
alloy-sol-types = { version = "0.8.12" }
[features]
default = []