[package] name = "ps-signalling" authors = ["Matthew Cotton"] description = "Rust library supporting the implementation of the Pixel Streaming signalling protocol in a Rust application." repository = "https://github.com/TensorWorks/rust-signalling" keywords = ["tensorworks", "pixelstreaming", "signalling"] license = "MIT" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] protobuf = "3" protobuf-json-mapping = "3.2.0" tokio = { version = "1.28", features = ["macros", "sync", "rt-multi-thread"] } tokio-stream = "0.1.14" warp = { version = "0.3", features = ["tls"] } serde = {version = "1.0", features = ["derive"] } serde_json = "1.0" futures = { version = "0.3", default-features = false } uuid = { version = "1.1.2", features = ["serde", "v4"] } log = "0.4.19" lazy_static = "1.4.0" quote = "1.0.29" paste = "1.0.13" colog = "1.2.0" clap = { version = "4.3.11", features = ["derive"] } [build-dependencies] protobuf-codegen = "3" protoc-rust = "^2.0"