[package] name = "todo_web_server" version = "0.1.4" authors = ["mohankumaranna "] edition = "2018" license = "MIT" description = "A Todo-web-server for learning purpose" readme = "README.md" homepage = "https://github.com/mohankumaranna/todo_web_server" repository = "https://github.com/mohankumaranna/todo_web_server" keywords = ["todo", "reqwest", "warp", "client", "handlebars"] categories = ["web-programming::http-client"] [dependencies] todo_app_server = "0.1.0" reqwest = { version = "0.10", features = ["json", "blocking"] } tokio = { version = "0.2", features = ["full"] } warp = { version = "0.2", features = ["tls"] } simplelog = "^0.7.4" serde = "1.0" serde_derive = "1.0" serde_json = "1.0" serde_urlencoded = "0.6" log = "0.4" handlebars = "3.0.0" futures = { version = "0.3", default-features = false, features = ["alloc"] } bytes = "0.5" config = "0.10.1" lazy_static = "1.4" chrono = "0.4" # used for date and time features http = "0.2" tokio-rustls = { version = "0.13.1", optional = true } [features] tls = ["tokio-rustls"]