[package] authors = [ "siwilizhao ", ] categories = [ "network-programming", "asynchronous", "web-programming::http-server", ] description = "A minimal Rust web application framework" documentation = "https://docs.rs/desirable" edition = "2021" keywords = ["desirable", "http", "web", "framework", "async"] license = "Apache-2.0" name = "desirable" publish = true # no accidents while in dev readme = "README.md" repository = "https://github.com/desirable-rs/desirable" version = "0.0.3" include = [ "Cargo.toml", "LICENSE", "src/**/*", #"build.rs", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0" async-trait = "0.1.80" bytes = "1.6.0" chrono = {version = "0.4.38", features = ["serde"]} dotenv = "0.15.0" http-body = "1.0" http-body-util = "0.1.1" hyper = {version = "1.3", features = ["full"]} mime = "0.3" route-recognizer = "0.3" serde = {version = "1.0", features = ["derive"]} serde_json = "1.0" serde_urlencoded = "0.7" thiserror = "1" tokio = {version = "1", features = ["full"]} tracing = "0.1" hyper-util = { version = "0.1", features = ["full"] } [dev-dependencies] [features] # Nothing by default default = [] [profile.release] codegen-units = 1 lto = true opt-level = "z" panic = "abort" strip = true