40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
# crates/rutster/Cargo.toml
|
|
[package]
|
|
name = "rutster"
|
|
version = "0.0.0"
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
description = "Rutster binary: axum signaling + media driver + static browser test client (slice 1)."
|
|
|
|
[dependencies]
|
|
rutster-media = { path = "../rutster-media" }
|
|
rutster-call-model = { path = "../rutster-call-model" }
|
|
rutster-tap = { path = "../rutster-tap" }
|
|
axum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-tungstenite = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
url = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
uuid = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tower = { workspace = true }
|
|
rutster-tap-echo = { path = "../rutster-tap-echo" }
|
|
# slice-3 §7.4: integration test spins up the in-process MockRealtimeBrain
|
|
# + drives the brain's `run_openai_pump` directly (replicating the brain
|
|
# process's accept loop in the test, no subprocess). The `mock` feature
|
|
# brings in MockRealtimeBrain without requiring OPENAI_API_KEY.
|
|
rutster-brain-realtime = { path = "../rutster-brain-realtime", features = ["mock"] }
|
|
|
|
[[bin]]
|
|
name = "rutster"
|
|
path = "src/main.rs"
|