http-handle 0.0.4

A fast and lightweight Rust library for handling HTTP requests and responses.
Documentation
[tool.black]
line-length = 88
target-version = ["py311"]

[tool.isort]
profile = "black"
line_length = 88

[tool.ruff]
line-length = 88
target-version = "py311"

[tool.ruff.lint]
select = [
  "E",
  "F",
  "I",
  "N",
  "UP",
  "B",
  "D",
]
ignore = ["D203", "D212"]

[tool.ruff.lint.pydocstyle]
convention = "google"