[package]
edition = "2024"
rust-version = "1.94"
name = "lenso-capability-http-endpoint"
version = "0.2.5"
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable HTTP Endpoint Capability contract for Lenso backend Modules."
readme = false
license = "MIT"
repository = "https://github.com/LioRael/lenso-web"
resolver = "2"
[lib]
name = "lenso_capability_http_endpoint"
path = "src/lib.rs"
[[test]]
name = "endpoint_attributes"
path = "tests/endpoint_attributes.rs"
[[test]]
name = "http_endpoint"
path = "tests/http_endpoint.rs"
[[test]]
name = "response_authoring"
path = "tests/response_authoring.rs"
[dependencies.futures]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.lenso-capability-http-endpoint-macros]
version = "0.1.3"
[dependencies.lenso-contract-runtime]
version = "0.1.0"
[dependencies.lenso-kernel]
version = "0.1.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_urlencoded]
version = "0.7"
[build-dependencies.lenso-contract-codegen]
version = "0.5.2"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
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_debug_implementations = "warn"
unsafe_code = "forbid"