forked from veraison/rust-regl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 903 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (25 loc) · 903 Bytes
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
[package]
name = "regl"
version = "0.1.0"
edition = "2024"
description = "Rust Evidence Generation Library — collects attestation evidence from TEE platforms"
license = "Apache-2.0"
repository = "https://github.com/veraison/rust-regl"
keywords = ["cca", "attestation", "arm", "evidence", "tee"]
categories = ["hardware-support", "cryptography"]
[dependencies]
thiserror = "2.0.18"
tempfile = "3"
ccatoken = { git = "https://github.com/veraison/rust-ccatoken.git" }
cmw = { git = "https://github.com/veraison/rust-cmw" }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
base64 = { version = "0.22", features = ["alloc"] }
ciborium = "0.2"
url = "2"
[dev-dependencies]
log = "0.4.29"
env_logger = "0.11.10"
clap = { version = "4.6.1", features = ["derive"] }
httpmock = "0.8"