[package] name = "easy-server" version = "0.7.0" authors = ["circumspect <40770208+circumspect@users.noreply.github.com>"] edition = "2021" license = "MIT" description = "Easily build a TCP server with tokio" readme = "../README.md" repository = "https://github.com/circumspect/easy-server/" homepage = "https://github.com/circumspect/easy-server/" [lib] name = "easy_server" path = "src/lib.rs" [dependencies] anyhow = "1.0" async-trait = "0.1" futures = "0.3" parking_lot = "0.12" serde = { version = "1", features = ["derive"] } serde_json = "1" thiserror = "1" tokio = { version = "1.24", features = ["macros", "net", "rt"] } tokio-serde = { version = "0.8", features = ["json"] } tokio-util = { version = "0.7", features = ["codec"] }