[package] name = "sfv" version = "0.14.0" authors = ["Tania Batieva "] edition = "2021" license = "MIT/Apache-2.0" readme = "README.md" documentation = "https://docs.rs/sfv" description = """Structured Field Values for HTTP parser. Implementation of RFC 8941 and RFC 9651.""" repository = "https://github.com/undef1nd/sfv" keywords = ["http-header", "structured-header", ] exclude = ["tests/**", ".github/*", "benches/**", "fuzz/**"] rust-version = "1.77" [dependencies] arbitrary = { version = "1.4.1", optional = true, features = ["derive"] } base64 = "0.22.1" indexmap = { version = "2", optional = true } ref-cast = "1.0.23" [dev-dependencies] serde_json = { version = "1.0" } serde = { version = "1.0", features = ["derive"] } criterion = "0.5.1" base32 = "0.5.1" [lints.clippy] pedantic = "deny" [[bench]] name = "bench" harness = false required-features = ["parsed-types"] [features] default = ["parsed-types"] arbitrary = ["dep:arbitrary", "indexmap?/arbitrary"] parsed-types = ["dep:indexmap"] [[example]] name = "priority" required-features = ["parsed-types"] [[test]] name = "specification_tests" required-features = ["parsed-types"]