[package]
edition = "2024"
rust-version = "1.88"
name = "gdck-format"
version = "0.5.0"
authors = ["eth0net"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GDScript formatter, the engine behind `gdck format` (internal)"
homepage = "https://github.com/eth0net/gdck"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/eth0net/gdck"
[lib]
name = "gdck_format"
path = "src/lib.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "godot"
path = "tests/godot.rs"
[[test]]
name = "style_guide"
path = "tests/style_guide.rs"
[dependencies.gdck-config]
version = "0.5.0"
[dependencies.gdck-syntax]
version = "0.5.0"
[dev-dependencies.gdck-syntax]
version = "0.5.0"
[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"