Cargo.toml (25 lines of code) (raw):
[package]
name = "aws-nitro-enclaves-nsm-api"
version = "0.4.0"
authors = ["The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>"]
edition = "2018"
rust-version = "1.71"
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"]