Files
vibe-kanban/crates/relay-ws/Cargo.toml
GitHub Action 4deb7eca8f
Some checks failed
Test / changes (push) Has been skipped
Test / frontend-checks (push) Failing after 0s
Test / backend-schema-checks (push) Failing after 1s
Test / backend-remote-checks (push) Failing after 0s
Test / backend-clippy (push) Failing after 0s
Test / backend-test (push) Failing after 0s
Test / tauri-checks (push) Failing after 1s
Relay Deploy Dev / Deploy Relay Dev (push) Has been cancelled
Remote Deploy Dev / Deploy Remote Dev (push) Has been cancelled
chore: bump version to 0.1.44
2026-04-24 09:17:32 +00:00

27 lines
779 B
TOML

[package]
name = "relay-ws"
version = "0.1.44"
edition = "2024"
[dependencies]
anyhow = "1.0"
axum = { version = "0.8.4", features = ["ws"] }
base64 = "0.22"
ed25519-dalek = { version = "2.2.0", features = ["rand_core"] }
futures-util = { version = "0.3", features = ["sink"] }
http = "1"
relay-control = { path = "../relay-control" }
relay-protocol = { path = "../relay-protocol" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
thiserror = { workspace = true }
tokio = { version = "1.0", features = ["net"] }
tokio-tungstenite = { version = "0.26" }
uuid = { version = "1.0" }
[dev-dependencies]
futures-channel = { version = "0.3", features = ["sink"] }
rand = "0.8"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }