[package] name = "warp-fix-171" version = "0.3.4" # don't forget to update html_root_url description = "A temporary patch for Warp until #924 is merged." authors = ["Sean McArthur "] license = "MIT" readme = "README.md" documentation = "https://docs.rs/warp" repository = "https://github.com/seanmonstar/warp" categories = ["web-programming::http-server"] keywords = ["warp", "server", "http", "hyper"] autotests = true autoexamples = true edition = "2018" [package.metadata.docs.rs] all-features = true [dependencies] async-compression = { version = "0.3.7", features = ["tokio"], optional = true } bytes = "1.0" futures-util = { version = "0.3", default-features = false, features = ["sink"] } futures-channel = { version = "0.3.17", features = ["sink"]} headers = "0.3" http = "0.2" hyper = { version = "0.14", features = ["stream", "server", "http1", "http2", "tcp", "client"] } log = "0.4" mime = "0.3" mime_guess = "2.0.0" multiparty = { version = "0.1", features = ["server", "futures03"], optional = true } scoped-tls = "1.0" serde = "1.0" serde_json = "1.0" serde_urlencoded = "0.7" tokio = { version = "1.0", features = ["fs", "sync", "time"] } tokio-stream = "0.1.1" tokio-util = { version = "0.7", features = ["io"] } tracing = { version = "0.1.21", default-features = false, features = ["log", "std"] } tower-service = "0.3" tokio-tungstenite = { version = "0.18", optional = true } percent-encoding = "2.1" pin-project = "1.0" tokio-rustls = { version = "0.23", optional = true } rustls-pemfile = "1.0" [dev-dependencies] pretty_env_logger = "0.4" tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-log = "0.1" serde_derive = "1.0" handlebars = "4.0" tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } tokio-stream = { version = "0.1.1", features = ["net"] } listenfd = "1.0" [features] default = ["multipart", "websocket"] multipart = ["multiparty"] websocket = ["tokio-tungstenite"] tls = ["tokio-rustls"] # Enable compression-related filters compression = ["compression-brotli", "compression-gzip"] compression-brotli = ["async-compression/brotli"] compression-gzip = ["async-compression/deflate", "async-compression/gzip"] [profile.release] codegen-units = 1 incremental = false [profile.bench] codegen-units = 1 incremental = false [[test]] name = "multipart" required-features = ["multipart"] [[test]] name = "ws" required-features = ["websocket"] [[example]] name = "compression" required-features = ["compression"] [[example]] name = "unix_socket" [[example]] name = "websockets" required-features = ["websocket"] [[example]] name = "websockets_chat" required-features = ["websocket"] [[example]] name = "query_string"