[package] name = "goohttp" version = "0.4.2" description = "An embedded, axum-compatible HTTP server and macros" authors = ["Gooxey "] edition = "2021" license = "MIT" readme = "README.md" publish = true repository = "https://github.com/Gooxey/goohttp.git" categories = ["embedded", "network-programming", "web-programming::http-server"] keywords = ["embedded", "esp", "http-server", "http", "axum"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [features] default = [] esp = ["dep:goolog", "dep:http", "dep:hyper", "dep:tokio"] [dependencies] axum = { version = "0.6.18", default-features = false } goolog = { version = "0.7.0", default-features = false, optional = true } http = { version = "0.2.9", optional = true } hyper = { version = "0.14.27", optional = true } tokio = { version = "1.29.1", features = ["rt", "time"], optional = true } [dev-dependencies] tokio = { version = "1.29.1", features = ["full"] } hyper = { version = "0.14.27" }