[package]
edition = "2021"
name = "car-inference-types"
version = "0.55.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-serde conversation/message wire types for Common Agent Runtime inference — shared by car-inference and car-sync so the transcript-resume projection can never drift from the real Message enum"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/Parslee-ai/car"
[lib]
name = "car_inference_types"
path = "src/lib.rs"
[dependencies.schemars]
version = "0.8"
features = [
"chrono",
"uuid1",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[lints.clippy]
assertions_on_constants = "allow"
doc_lazy_continuation = "allow"
empty_line_after_doc_comments = "allow"
field_reassign_with_default = "allow"
large_enum_variant = "allow"
needless_range_loop = "allow"
result_large_err = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unnecessary_sort_by = "allow"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(car_system_audio)",
"cfg(car_skip_mlx)",
"cfg(car_skip_cuda)",
]
[lints.rustdoc]
bare_urls = "warn"
broken_intra_doc_links = "warn"
invalid_html_tags = "warn"
private_intra_doc_links = "allow"
redundant_explicit_links = "warn"