[package] name = "hypers" version.workspace = true edition.workspace = true rust-version.workspace = true description.workspace = true documentation.workspace = true homepage.workspace = true repository.workspace = true keywords.workspace = true categories.workspace = true license.workspace = true readme.workspace = true [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [package.metadata.playground] all-features = true [features] default = ["macro", "http1"] macro = ["hypers_core/macro"] http1 = ["hypers_core/http1"] http2 = ["hypers_core/http2"] openapi = ["hypers_openapi"] cbor = ["hypers_core/cbor"] msgpack = ["hypers_core/msgpack"] yaml = ["hypers_core/yaml"] toml = ["hypers_core/toml"] xml = ["hypers_core/xml"] multipart = ["hypers_core/multipart"] cookie = ["hypers_core/cookie"] static_file = ["hypers_core/static_file"] static_embed = ["hypers_core/static_embed"] websocket = ["hypers_core/websocket"] rustls = ["hypers_core/rustls"] native_tls = ["hypers_core/native_tls"] full = ["hypers_core/full"] debug = ["hypers_core/debug", "hypers_openapi/debug"] test = ["hypers_core/test"] session = ["hypers_session"] compression = ["hypers_compression"] [dependencies] hypers_core = { workspace = true } hypers_openapi = { workspace = true, optional = true } hypers_session = { workspace = true, optional = true } hypers_compression = { workspace = true, features = ["full"], optional = true }