Skip to content

Commit e4b4e89

Browse files
committed
format support lua5.5
1 parent 9e0ffb2 commit e4b4e89

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ members = [
77

88
[workspace.dependencies]
99
# local
10-
emmylua_code_analysis = { path = "crates/emmylua_code_analysis", version = "0.18.0" }
11-
emmylua_parser = { path = "crates/emmylua_parser", version = "0.20.0" }
12-
emmylua_parser_desc = { path = "crates/emmylua_parser_desc", version = "0.20.0" }
10+
emmylua_code_analysis = { path = "crates/emmylua_code_analysis", version = "0.19.0" }
11+
emmylua_parser = { path = "crates/emmylua_parser", version = "0.21.0" }
12+
emmylua_parser_desc = { path = "crates/emmylua_parser_desc", version = "0.21.0" }
1313
emmylua_diagnostic_macro = { path = "crates/emmylua_diagnostic_macro", version = "0.5.0" }
1414

1515
# external
@@ -31,7 +31,7 @@ tokio-util = "0.7.16"
3131
walkdir = "2.5.0"
3232
serde_yml = "0.0.12"
3333
dirs = "6"
34-
emmylua_codestyle = "0.5.0"
34+
emmylua_codestyle = "0.6.0"
3535
wax = "0.6.0"
3636
percent-encoding = "2.3"
3737
flagset = "0.4.7"

crates/emmylua_check/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emmylua_check"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2024"
55
authors = ["CppCXY"]
66
description = "A command-line tool for checking lua code."

crates/emmylua_code_analysis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emmylua_code_analysis"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2024"
55
authors = ["CppCXY"]
66
description = "A library for analyzing lua code."

crates/emmylua_doc_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emmylua_doc_cli"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2024"
55
authors = ["CppCXY"]
66
description = "A command-line tool for generating lua documentation."

crates/emmylua_ls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emmylua_ls"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2024"
55
authors = ["CppCXY"]
66
description = "A language server for emmylua."

crates/emmylua_parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emmylua_parser"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
edition = "2024"
55
authors = ["CppCXY"]
66
description = "A parser for EmmyLua and luals"

crates/emmylua_parser_desc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emmylua_parser_desc"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
edition = "2024"
55
authors = ["CppCXY", "taminomara"]
66
description = "A parser for markup within Lua comments"

0 commit comments

Comments
 (0)