-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathCargo.toml
36 lines (33 loc) · 799 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
30
31
32
33
34
35
36
[package]
name = "selene-lib"
version.workspace = true
license.workspace = true
authors.workspace = true
description = "A library for linting Lua code. You probably want selene instead."
categories = ["command-line-utilities"]
keywords = ["lua", "linter", "lua51"]
repository.workspace = true
edition.workspace = true
[dependencies]
codespan = "0.11"
codespan-reporting = "0.11"
full_moon.workspace = true
id-arena = "2.2"
if_chain = "1.0.2"
lazy_static = "1.4"
once_cell = "1.17.0"
paste = "1.0.11"
profiling.workspace = true
regex = "1.7.1"
serde = "1.0.152"
serde_yaml = "0.9.16"
similar = "2.3.0"
toml.workspace = true
[dev-dependencies]
serde_json = "1.0"
pretty_assertions = "1.3"
termcolor = "1.2"
[features]
default = ["roblox"]
force_exhaustive_checks = []
roblox = ["full_moon/roblox"]