[package] name = "http-bytes" version = "0.1.0" authors = ["Vitaly _Vi Shukela "] repository = "https://github.com/vi/http-bytes" description = "Byte buffer to/from http::{Request,Response}" keywords = ["http", "bytes", "parser", "httpparse"] categories = ["encoding", "network-programming", "web-programming"] license = "MIT/Apache-2.0" #msrv = "1.28.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] http = "0.1.17" httparse = "1.3.3" bytes = "0.4.12" base64 = { version = "0.10.1", optional = true } percent-encoding = { version = "1.0.1", optional = true } [features] default = ["basicauth"] basicauth = ["base64", "percent-encoding"] [badges] travis-ci = { repository = "vi/http-bytes", branch = "master" } [dev-dependencies] proptest = "0.9.4" proptest-http = "0.1.0"