1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
[package]
name = "http-content-range"
version = "0.2.1"
description = "HTTP Content Range response header parser"
authors = ["Yuri Astrakhan <YuriAstrakhan@gmail.com>"]
repository = "https://github.com/nyurik/http-content-range"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["http", "headers", "content-range"]
categories = ["network-programming", "web-programming::http-client"]
rust-version = "1.58.1"
exclude = [
".gitignore",
".github/*",
"justfile",
]
[lints.rust]
unsafe_code = "forbid"
unused_qualifications = "warn"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
|