[package]
edition = "2024"
rust-version = "1.88"
name = "gdck-syntax"
version = "0.5.0"
authors = ["eth0net"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lossless lexer and parser for GDScript"
homepage = "https://github.com/eth0net/gdck"
readme = "README.md"
keywords = [
"godot",
"gdscript",
"parser",
"lexer",
"cst",
]
categories = [
"parser-implementations",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/eth0net/gdck"
[lib]
name = "gdck_syntax"
path = "src/lib.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[dependencies]
[lints.clippy]
cast_possible_truncation = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_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"
unreachable_pub = "warn"