forked from aws/aws-nitro-enclaves-nsm-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 764 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 = "aws-nitro-enclaves-nsm-api"
version = "0.3.0"
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
edition = "2018"
rust-version = "1.60"
license = "Apache-2.0"
description = "This library provides the API for the Nitro Secure Module used in AWS Nitro Enclaves."
keywords = ["Nitro", "Enclaves", "AWS"]
categories = ["hardware-support"]
repository = "https://github.com/aws/aws-nitro-enclaves-nsm-api"
[workspace]
members = [ ".", "nsm-lib", "nsm-test" ]
default-members = [ "." ]
[profile.release]
lto = true
[dependencies]
nix = { version = "0.26", optional = true }
libc = "0.2"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
serde_cbor = "0.11"
[features]
default = ["nix"]