[package]
edition = "2024"
rust-version = "1.88.0"
name = "gdscript-base"
version = "0.2.0"
authors = ["Yaniv Kalfa <yanivkalfa@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Foundational POD types (FileId, TextSize/TextRange, LineIndex, result structs) for gdscript-analyzer."
homepage = "https://github.com/yanivkalfa/gdscript-analyzer"
readme = "README.md"
keywords = [
"gdscript",
"godot",
"analyzer",
"lsp",
"language-server",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yanivkalfa/gdscript-analyzer"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "gdscript_base"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "warn"