28 lines
672 B
TOML
28 lines
672 B
TOML
[package]
|
|
name = "symclaw-collab"
|
|
description = "Real-time multi-user collaboration server for SymClaw"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
|
|
[[bin]]
|
|
name = "symclaw-collab"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
symclaw-core = { path = "../symclaw-core" }
|
|
tokio = { workspace = true }
|
|
tokio-tungstenite = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
uuid = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|