[package]
edition = "2024"
rust-version = "1.87"
name = "consortium-tee"
version = "0.1.0"
authors = ["Ethan Wu <7086cmd@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Trusted Execution Environment (TEE) support for Consortium with pluggable codec serialization via consortium_codec::CodecFor"
homepage = "https://github.com/consortium-rs/consortium"
readme = "README.md"
keywords = [
"amp",
"embedded",
"heterogeneous",
"ipc",
"no-std",
]
categories = [
"embedded",
"hardware-support",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/consortium-rs/consortium"
resolver = "2"
[features]
ca = [
"consortium-log/tracing",
"dep:optee-teec",
"dep:tokio",
]
default = ["ca"]
defmt = [
"consortium-log/defmt",
"dep:defmt",
]
ta = []
[lib]
name = "consortium_tee"
path = "src/lib.rs"
[[test]]
name = "tee_command_trybuild"
path = "tests/tee_command_trybuild.rs"
[[test]]
name = "tee_param_host"
path = "tests/tee_param_host.rs"
[[test]]
name = "tee_param_trybuild"
path = "tests/tee_param_trybuild.rs"
[dependencies.consortium-codec]
version = "0.1.0"
[dependencies.consortium-log]
version = "0.1.0"
default-features = false
[dependencies.consortium-tee-macros]
version = "0.1.0"
[dependencies.defmt]
version = "1.1.0"
optional = true
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1"
features = ["rt"]
optional = true
default-features = false
[dev-dependencies.trybuild]
version = "1"
[target.'cfg(target_os = "linux")'.dependencies.optee-teec]
version = "0.9.0"
optional = true