[package] name = "ws-gonzale" version = "0.5.0" authors = ["Christoffer Lantz "] edition = "2018" description = "Naive websocket server implemented using async / await" repository = "https://github.com/Muqito/ws-gonzale" keywords = ["websocket-server", "websocket", "async", "non-blocking", "futures"] categories = ["asynchronous", "network-programming"] license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] futures = "0.3" async-std = "1.6.2" async-net = "0.1" async-channel = "1.1.1" async-trait = "0.1.36" sha1 = "0.6.0" base64 = "0.12.3" [dev-dependencies] criterion = "0.3" hex = "0.4.2" [[bench]] name = "my_benchmark" harness = false [[example]] name = "life-cycle" path = "examples/life-cycle/main.rs"