[package] name = "pl_web_api" version = "0.1.1" authors = ["Mickael Eriksson "] edition = "2018" license = "MIT OR Apache-2.0" description = "A api to store books" readme = "README.md" homepage = "https://github.com/you/grrs" repository = "https://github.com/you/grrs" keywords = ["cli", "search", "demo","api"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "0.2", features = ["macros", "rt-threaded"] } warp = "0.2" serde = {version = "1.0", features = ["derive"] } thiserror = "1.0" chrono = { version = "0.4", features = ["serde"] } futures = { version = "0.3.4", default-features = false, features = ["async-await"] } mongodb = "1.0.0" bson = "1.1.0" hyper = "0.13.7" [profile.dev] debug = 0 [profile.test] debug = 0 [profile.release] panic = 'abort'