vncstream/server/Cargo.toml

26 lines
505 B
TOML
Raw Normal View History

2024-09-08 11:03:48 -04:00
[package]
name = "vncstream_server"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.86"
# vnc
vnc-rs = { git = "https://github.com/computernewb/vnc-rs.git" }
tokio = { version = "1.39.3", features = ["full"] }
#ws
axum = { version = "0.7.5", features = ["ws", "macros"] }
futures = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
# ffmpeg
ffmpeg-the-third = "2.0.1"
# misc stuff
2024-09-08 11:03:48 -04:00
rand = "0.8.5"
serde = "1.0.209"
serde_json = "1.0.128"