[package] name = "sshu-communicator" version = "0.0.2" edition = "2021" description = "Just another one fraemwork for RPC communication. Aming to implement request/response pattern for async code over ws and tcp protocol. This is very first implementtion just for learn purpose." license="MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] futures = "0.3.28" tokio = { version = "1.28.2", features = ["full"] } uuid = { version = "1.4.0", features = ["v4"] } bincode = "1.3.3" serde = { version = "1.0.166", features = ["derive"] } bytes = "1.0.1" async-trait = "0.1.71" rand = "0.8.5"