-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (24 loc) · 852 Bytes
/
Cargo.toml
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
[package]
name = "dprint-plugin-stylua"
version = "0.2.1"
authors = ["RubixDev"]
edition = "2021"
homepage = "https://github.com/RubixDev/dprint-plugin-stylua"
license = "GPL-3.0-only"
repository = "https://github.com/RubixDev/dprint-plugin-stylua"
description = "StyLua integration for dprint"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["lib", "cdylib"]
[features]
default = ["lua52", "lua53", "lua54", "luau"]
lua52 = ["stylua/lua52"]
lua53 = ["stylua/lua53"]
lua54 = ["stylua/lua54"]
luau = ["stylua/luau"]
[dependencies]
anyhow = "1.0.65"
dprint-core = { version = "0.59.0", features = ["wasm"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
stylua = { version = "0.15.2", features = ["serialize", "fromstr"], default-features = false }