[package]
edition = "2024"
rust-version = "1.90"
name = "post-cortex-proto"
version = "0.3.1"
authors = ["Julius ML"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Protobuf + tonic-generated wire types for post-cortex. Domain-neutral; safe to depend on from gRPC clients without pulling the full server stack."
documentation = "https://docs.rs/post-cortex-proto"
readme = "README.md"
keywords = [
"post-cortex",
"grpc",
"protobuf",
"tonic",
"memory",
]
categories = [
"api-bindings",
"encoding",
]
license = "MIT"
repository = "https://github.com/juliusbiascan/post-cortex"
resolver = "2"
[lib]
name = "post_cortex_proto"
path = "src/lib.rs"
[dependencies.prost]
version = "0.13"
[dependencies.prost-types]
version = "0.13"
[dependencies.tonic]
version = "0.12"
[build-dependencies.tonic-build]
version = "0.12"
[lints.clippy]
doc_lazy_continuation = "allow"
field_reassign_with_default = "allow"
manual_checked_ops = "allow"
manual_div_ceil = "allow"
needless_range_loop = "allow"
result_large_err = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unnecessary_sort_by = "allow"
useless_vec = "allow"
[lints.rust]
missing_docs = "warn"