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
12 changes: 12 additions & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
resolver = "3"
members = [
"crates/ourios-bench",
"crates/ourios-core",
"crates/ourios-miner",
"crates/ourios-parquet",
Expand All @@ -11,7 +12,6 @@ members = [
# crates/ourios-ingester
# crates/ourios-querier
# crates/ourios-server
# crates/ourios-bench

[workspace.package]
edition = "2024"
Expand Down
40 changes: 40 additions & 0 deletions crates/ourios-bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[package]
name = "ourios-bench"
version = "0.0.0"
description = "RFC 0006 thesis-gate bench harness (A1 / C1 / C2). Drives ourios-miner + ourios-parquet against a corpus and computes the writer-side thesis-gate numbers."
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
publish = false

[[bin]]
name = "ourios-bench"
path = "src/main.rs"

[lib]
name = "ourios_bench"
path = "src/lib.rs"

[dependencies]
# Workspace crates the harness drives end-to-end. The bench is
# the only consumer that pulls all three on the same dep line
# (miner + parquet writer + the core OtlpLogRecord shape they
# share).
ourios-core = { path = "../ourios-core" }
ourios-miner = { path = "../ourios-miner" }
ourios-parquet = { path = "../ourios-parquet" }
# Serde + serde_json for the §3.6 ResultsFile JSON contract.
# `derive` gives the struct→JSON path; `std` covers the rest.
serde = { version = "1", default-features = false, features = ["derive", "std"] }
serde_json = { version = "1", default-features = false, features = ["std"] }

[dev-dependencies]
# `tempfile` is the standard scratch-directory helper the other
# integration tests in this workspace use (see ourios-parquet's
# dev-dependencies). The bench's red-gate test stubs will need
# it once they run real flows.
tempfile = "3"

[lints]
workspace = true
Loading
Loading