Cargo workspace with 5 crates: buh-entity (pure data structs), buh-data (Turso/libsql data access), buh-util (scraper, rules, processor, sync modules), buh-cli (binary "buh" with client/daemon subcommands), and buh-ws (axum WebSocket server). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
413 B
TOML
17 lines
413 B
TOML
[package]
|
|
name = "buh-ws"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
buh-entity = { workspace = true }
|
|
buh-data = { workspace = true }
|
|
buh-util = { workspace = true }
|
|
axum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|