[package] name = "bhttp" version = "0.5.3" authors = ["Martin Thomson "] edition = "2021" rust-version = "1.63.0" license = "MIT OR Apache-2.0" description = "Binary HTTP messages (RFC 9292)" repository = "https://github.com/martinthomson/ohttp" [features] default = ["bhttp"] bhttp = ["read-bhttp", "write-bhttp"] http = ["read-http", "write-http"] read-bhttp = [] write-bhttp = [] read-http = ["url"] write-http = [] [dependencies] thiserror = "1" url = {version = "2", optional = true} [dev-dependencies] hex = "0.4"