#31 and #36 bump tonic-build alone to 0.14 and break the build outright: 0.14 moved prost codegen out to tonic-prost-build, so `tonic_build::configure()` no longer exists. Both repositories also pin `tonic = "0.12"` as the runtime beside it, and codegen from 0.14 against a 0.12 runtime would be incoherent even if it compiled. So the whole set moves together, in agent and in search: tonic 0.12 -> 0.14 tonic-build 0.12 -> tonic-prost-build 0.14 (build-dependency) prost 0.13 -> 0.14 tonic-prost new runtime dependency Two consequences worth naming. The generated code now reaches for `tonic_prost::ProstCodec`, so tonic-prost has to be a real dependency rather than something the build script pulls in. And prost had to move with it: tonic-prost 0.14 wants prost 0.14, so leaving ours at 0.13 left the generated types deriving a `Message` trait from a different prost than the one the codec demanded. tonic's `tls` feature is gone, replaced by one feature per crypto provider. `tls-ring` is the like-for-like choice: it is the rustls-plus- ring pairing `tls` used to mean, and the agent hands its own CA and identity to ClientTlsConfig for mTLS, so it needs no root store. The call sites did not change at all -- transport::{Certificate, Channel, ClientTlsConfig, Identity} and include_proto! are all still where they were. Verified by building both, since no CI job compiles Rust: agent and search check clean, 34 agent tests and 24 search tests pass.
48 lines
1.5 KiB
TOML
48 lines
1.5 KiB
TOML
[package]
|
|
name = "cairnobs-search"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-only"
|
|
description = "Cairn OBS Tantivy-backed full-text search service"
|
|
|
|
[[bin]]
|
|
name = "cairnobs-search"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "sync", "signal", "time"] }
|
|
tonic = "0.14"
|
|
tonic-prost = "0.14"
|
|
prost = "0.14"
|
|
|
|
tantivy = "0.26"
|
|
rskafka = "0.6"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
# tenants.rs's only outbound HTTP call (GET enterprise-auth's
|
|
# /internal/active-tenants) -- default-features = false drops TLS
|
|
# support entirely, matching every other internal service-to-service
|
|
# call in this repo (plain HTTP, network placement is the trust
|
|
# boundary, not TLS -- see ingest/internal/grpcserver.
|
|
# HTTPTenantResolver's identical posture against the same service).
|
|
reqwest = { version = "0.12", default-features = false, features = ["json"] }
|
|
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[build-dependencies]
|
|
tonic-prost-build = "0.14"
|
|
|
|
[dev-dependencies]
|
|
# Already in the dependency graph transitively (tantivy/tonic-build both
|
|
# pull it in); promoted to a direct dev-dependency for test use.
|
|
tempfile = "3"
|
|
# tenants.rs's tests spin up a tiny real TCP server to exercise reqwest
|
|
# against, rather than pulling in a mocking crate -- needs tokio
|
|
# features the main binary doesn't (edition 2021's resolver keeps these
|
|
# out of the release build, test-only).
|
|
tokio = { version = "1", features = ["net", "io-util"] }
|