[package]
edition = "2024"
rust-version = "1.95"
name = "lsp-docs"
version = "0.1.1"
authors = [
"AXON Project",
"Bemarking AI S.A.S.",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Static structured documentation for the Axon language, embedded at compile time. Consumed by axon-lsp's hover and completion resolvers."
readme = "README.md"
keywords = [
"axon",
"lsp",
"documentation",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/Bemarking/axon-lsp"
[lib]
name = "lsp_docs"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"