Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
146 changes: 144 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions crates/ourios-ingester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ doctest = false
ourios-config = { path = "../ourios-config" }
# Shared types (TenantId, config) for the ingest path.
ourios-core = { path = "../ourios-core" }
# RFC 0030 TLS seam: rustls builds each listener's ServerConfig (already
# in the workspace tree via reqwest; the provider is pinned to ring in
# code, so only that provider feature is enabled here), and pki-types'
# `pem` feature reads the cert/key/CA files.
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12", "logging"] }
rustls-pki-types = { version = "1", default-features = false, features = ["std"] }
Comment thread
jensholdgaard marked this conversation as resolved.
# The ingest pipeline's WAL-before-ack durability (RFC 0003 §6.5 /
# CLAUDE.md §3.4): append the OtlpBatch frame + fsync before acking.
ourios-wal = { path = "../ourios-wal" }
Expand Down Expand Up @@ -107,6 +113,9 @@ uuid = { version = "1", default-features = false, features = ["std", "v7"] }
oidc = ["ourios-core/oidc"]

[dev-dependencies]
# RFC 0030 test CAs / leaf certs, minted at test time — no committed
# key material (the RFC 0029 house rule).
rcgen = { version = "0.14", default-features = false, features = ["pem", "crypto", "ring"] }
# The RFC0026.2 served-stack arm: serve `LogsServiceServer::with_interceptor`
# over a local socket and drive it with a real tonic client, so the
# metadata → interceptor → extension → handler handoff is covered end to end.
Expand Down
1 change: 1 addition & 0 deletions crates/ourios-ingester/src/receiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ pub mod http;
pub mod materialize;
pub mod pipeline;
pub mod tenant;
pub mod tls;

pub use auth::{AuthBinding, AuthResolver, Unauthenticated, authenticate_bearer};
pub use commit::CommitCoordinator;
Expand Down
Loading