Skip to content

Commit cb58af7

Browse files
committed
Enable Lua 5.2, 5.3, 5.4 and Luau support by default
1 parent fa8e981 commit cb58af7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ description = "StyLua integration for dprint"
1313
[lib]
1414
crate-type = ["lib", "cdylib"]
1515

16+
[features]
17+
default = ["lua52", "lua53", "lua54", "luau"]
18+
19+
lua52 = ["stylua/lua52"]
20+
lua53 = ["stylua/lua53"]
21+
lua54 = ["stylua/lua54"]
22+
luau = ["stylua/luau"]
23+
1624
[dependencies]
1725
anyhow = "1.0.65"
1826
dprint-core = { version = "0.59.0", features = ["wasm"] }

0 commit comments

Comments
 (0)