[package]
edition = "2024"
rust-version = "1.97"
name = "alux-http-text"
version = "0.1.1"
authors = ["Tomislav Grospic <grospic@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Text and metadata interpretation of ALUX typed HTTP programs"
homepage = "https://alux.network"
documentation = "https://docs.rs/alux-http-text"
readme = "README.md"
license = "MIT"
repository = "https://github.com/alux-network/alux-rust"
resolver = "2"
[lib]
name = "alux_http_text"
path = "src/lib.rs"
[[test]]
name = "text_http"
path = "tests/text_http.rs"
[dependencies.alux-ext]
version = "0.1"
[dependencies.alux-http]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[lints.rustdoc]
broken_intra_doc_links = "deny"