[package]
edition = "2024"
rust-version = "1.88"
name = "gdck"
version = "0.6.0"
authors = ["eth0net"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast GDScript formatter and linter"
homepage = "https://github.com/eth0net/gdck"
readme = "README.md"
keywords = [
"godot",
"gdscript",
"formatter",
"linter",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/eth0net/gdck"
[[bin]]
name = "gdck"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"wrap_help",
]
[dependencies.gdck-config]
version = "0.6.0"
[dependencies.gdck-format]
version = "0.6.0"
[dependencies.gdck-lint]
version = "0.6.0"
[dependencies.gdck-syntax]
version = "0.6.0"
[dependencies.ignore]
version = "0.4"
[dependencies.similar]
version = "3.1"
[dev-dependencies.assert_cmd]
version = "2.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"