[package]
edition = "2024"
rust-version = "1.96"
name = "truefix-at"
version = "0.1.10"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TrueFix acceptance-test (AT) conformance suite."
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/truefix-labs/truefix"
resolver = "2"
[lib]
name = "truefix_at"
path = "src/lib.rs"
[[test]]
name = "all_versions_have_validators"
path = "tests/all_versions_have_validators.rs"
[[test]]
name = "audit006_protocol_scenarios"
path = "tests/audit006_protocol_scenarios.rs"
[[test]]
name = "buffer_empty_at_scenario_end"
path = "tests/buffer_empty_at_scenario_end.rs"
[[test]]
name = "check_match_flags_extra_fields"
path = "tests/check_match_flags_extra_fields.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "fixed_identity_acceptor_scenarios"
path = "tests/fixed_identity_acceptor_scenarios.rs"
[[test]]
name = "per_scenario_reporting"
path = "tests/per_scenario_reporting.rs"
[[test]]
name = "read_message_three_outcomes"
path = "tests/read_message_three_outcomes.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"macros",
]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.truefix-core]
version = "0.1.10"
[dependencies.truefix-dict]
version = "0.1.10"
[dependencies.truefix-session]
version = "0.1.10"
[dependencies.truefix-transport]
version = "0.1.10"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[lints.rust]
unsafe_code = "forbid"