add complete binary and benchmarking

This commit is contained in:
Timur Gordon
2025-11-18 20:39:25 +01:00
parent f66edba1d3
commit 4142f62e54
17 changed files with 2559 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
resolver = "2"
members = [
"bin/coordinator",
"bin/horus",
"bin/osiris",
"bin/runners/osiris",
"bin/runners/sal",
@@ -35,6 +36,26 @@ lazy_static = { workspace = true }
escargot = "0.5"
ctrlc = "3.4"
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
osiris-client = { path = "lib/clients/osiris" }
reqwest = { version = "0.12", features = ["json"] }
serde_json = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
[[bench]]
name = "horus_stack"
harness = false
[[bench]]
name = "stress_test"
harness = false
[[bench]]
name = "memory_usage"
harness = false
[workspace.package]
version = "0.1.0"
edition = "2024"