[package]
edition = "2024"
rust-version = "1.85"
name = "index-http"
version = "1.0.0"
authors = ["Index contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fetch abstraction for Index."
documentation = "https://docs.rs/index-http"
readme = "README.md"
license = "Unlicense"
[lib]
name = "index_http"
path = "src/lib.rs"
[[test]]
name = "transport_and_fallback"
path = "tests/transport_and_fallback.rs"
[dependencies.index-core]
version = "1.0.0"
[dependencies.index-security]
version = "1.0.0"
[dependencies.ureq]
version = "3.3.0"
[lints.clippy]
all = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_used = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"