-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 916 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "gdscript-formatter"
version = "0.18.2"
edition = "2024"
description = "A GDScript code formatter and linter using Topiary and Tree-sitter"
license = "MIT"
repository = "https://github.com/gdquest/gdscript-formatter"
readme = "README.md"
keywords = ["godot", "gdscript", "format", "lint"]
categories = ["command-line-utilities", "development-tools"]
default-run = "gdscript-formatter"
[dependencies]
clap = { version = "4.0", features = ["derive", "wrap_help"] }
topiary-core = "0.7.0"
tree-sitter-gdscript = { git = "https://github.com/PrestonKnopp/tree-sitter-gdscript.git", rev = "89e66b6bdc002ab976283f277cbb48b780c5d0e9" }
regex = "1.11"
tree-sitter = "0.25.10"
rayon = "1.11.0"
[dev-dependencies]
test_each_file = "0.3.5"
similar = "2.7.0"
[features]
default = ["gdscript"]
gdscript = []
[[bin]]
name = "gdscript-formatter"
path = "src/main.rs"
[profile.release]
strip = true
lto = true