A Rust project for overlaying your stream.place chat in OBS
at main 32 lines 874 B view raw
1[package] 2name = "streamplace-chat-server" 3version = "0.1.0" 4edition = "2024" 5 6[dependencies] 7anyhow = "1.0.100" 8async-trait = "0.1.89" 9axum = "0.8.8" 10futures-core = "0.3.31" 11jacquard = "0.9.5" 12jacquard-api = "0.9.5" 13jacquard-common = {version = "0.9.5", features = ["websocket"]} 14jacquard-identity = {version = "0.9.5", features = ["dns"]} 15maud = { version = "0.27.0", features = ["axum"] } 16miette = { version = "7.6.0", features = ["fancy"] } 17reqwest = "0.12.28" 18serde = { version = "1.0.228", features = ["derive"] } 19serde_json = "1.0.149" 20tokio = { version = "1.49.0", features = ["full"] } 21tokio-stream = { version = "0.1.18", features = ["full"] } 22tower-http = { version = "0.6", features = ["fs"] } 23tracing-subscriber = "0.3.22" 24url = "2.5.8" 25 26[[bin]] 27name = "streamplace-chat-server" 28path = "src/main.rs" 29 30[lib] 31name = "streamplace_chat_lib" 32path = "src/lib/lib.rs"