[package]
edition = "2021"
name = "corim"
version = "0.1.0"
authors = ["Microsoft"]
build = false
exclude = [
"tests/coverage_boost_tests.rs",
"tests/coverage_ceiling_tests.rs",
"tests/negative_error_path_tests.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Concise Reference Integrity Manifest (CoRIM) — CBOR-based encoding of Endorsements and Reference Values for Remote Attestation (RATS)."
readme = "README.md"
keywords = [
"corim",
"comid",
"cbor",
"attestation",
"rats",
]
categories = [
"encoding",
"authentication",
"cryptography",
]
license = "MIT"
repository = "https://github.com/Azure/corim"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
json = [
"std",
"serde_json",
]
std = [
"serde/std",
"thiserror/std",
]
[lib]
name = "corim"
path = "src/lib.rs"
[[example]]
name = "build_corim"
path = "examples/build_corim.rs"
[[example]]
name = "validate_corim"
path = "examples/validate_corim.rs"
[[test]]
name = "cbor_rfc_conformance_tests"
path = "tests/cbor_rfc_conformance_tests.rs"
[[test]]
name = "cddl_conformance_tests"
path = "tests/cddl_conformance_tests.rs"
[[test]]
name = "coswid_json_tests"
path = "tests/coswid_json_tests.rs"
[[test]]
name = "cotl_tests"
path = "tests/cotl_tests.rs"
[[test]]
name = "error_path_tests"
path = "tests/error_path_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "signed_corim_tests"
path = "tests/signed_corim_tests.rs"
[[test]]
name = "validate_tests"
path = "tests/validate_tests.rs"
[dependencies.corim-macros]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = [
"derive",
"alloc",
]
default-features = false
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.thiserror]
version = "2"
default-features = false