[package] name = "comment_app_backend" version = "0.1.3" authors = ["mohankumaranna "] edition = "2018" license = "MIT" description = "Serves comments through Restful APIs" readme = "README.md" homepage = "https://github.com/mohankumaranna/comment_app_backend" repository = "https://github.com/mohankumaranna/comment_app_backend" keywords = ["comment", "warp", "tool", "utility"] categories = ["web-programming::http-server"] [dependencies] tokio = { version = "0.2", features = ["macros"] } warp = { version = "0.2", features = ["tls"] } chrono = "0.4" # used for date and time features log = "0.4" simplelog = "0.8" lazy_static = "1.4" futures = { version = "0.3", default-features = false, features = ["alloc"] } bytes = "0.5" serde = "1.0" serde_derive = "1.0" serde_json = "1.0" config = "0.10.1" time = "0.2.9" url = "1.0" rustls = { version = "0.16", optional = true } [dependencies.rusqlite] version = "0.23.1" features = ["bundled"] [features] tls = ["rustls"]