[package]
edition = "2021"
rust-version = "1.85"
name = "corim"
version = "0.1.2"
authors = ["Microsoft"]
build = false
exclude = ["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",
]
profile-intel = []
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 = "builder_tests"
path = "tests/builder_tests.rs"
[[test]]
name = "cbor_rfc_conformance_tests"
path = "tests/cbor_rfc_conformance_tests.rs"
[[test]]
name = "cbor_tag_choice_de_tests"
path = "tests/cbor_tag_choice_de_tests.rs"
[[test]]
name = "cbor_tag_choice_ser_tests"
path = "tests/cbor_tag_choice_ser_tests.rs"
[[test]]
name = "cbor_value_tests"
path = "tests/cbor_value_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 = "diagnose_profile_tests"
path = "tests/diagnose_profile_tests.rs"
[[test]]
name = "display_tests"
path = "tests/display_tests.rs"
[[test]]
name = "error_path_tests"
path = "tests/error_path_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "json_value_conv_tests"
path = "tests/json_value_conv_tests.rs"
[[test]]
name = "profile_extras_tests"
path = "tests/profile_extras_tests.rs"
[[test]]
name = "profile_intel_expression_tests"
path = "tests/profile_intel_expression_tests.rs"
[[test]]
name = "profile_intel_match_tests"
path = "tests/profile_intel_match_tests.rs"
[[test]]
name = "profile_intel_registration_tests"
path = "tests/profile_intel_registration_tests.rs"
[[test]]
name = "profile_registry_tests"
path = "tests/profile_registry_tests.rs"
[[test]]
name = "profile_validation_tests"
path = "tests/profile_validation_tests.rs"
[[test]]
name = "signed_corim_tests"
path = "tests/signed_corim_tests.rs"
[[test]]
name = "tcg_compat_tests"
path = "tests/tcg_compat_tests.rs"
[[test]]
name = "validate_tests"
path = "tests/validate_tests.rs"
[dependencies.corim-macros]
version = "0.1.2"
[dependencies.serde]
version = "1"
features = [
"derive",
"alloc",
]
default-features = false
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.thiserror]
version = "2"
default-features = false