Skip to content

Commit ec941f8

Browse files
committed
fix build
1 parent 9d556c3 commit ec941f8

File tree

3 files changed

+1
-38
lines changed

3 files changed

+1
-38
lines changed

crates/basic/src/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ mod codestyle;
33
mod lpeglabel;
44
mod lua_seri;
55
mod override_lua;
6-
pub(crate) mod luajit_utf8;
76

87
#[macro_use]
98
extern crate lazy_static;
@@ -20,8 +19,6 @@ pub fn lua_preload(lua: &Lua) -> LuaResult<()> {
2019
lua_seri::register_lua_seri(&lua)?;
2120
// codestyle
2221
codestyle::register_code_format_module(lua)?;
23-
// luajit_utf8
24-
luajit_utf8::register_lua_utf8(lua)?;
2522

2623
add_package_path(
2724
&lua,

crates/basic/src/luajit_utf8/mod.rs

-34
This file was deleted.

crates/luals/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ tokio.workspace = true
1616
luals-basic = { path = "../basic" , optional = true }
1717

1818
[features]
19-
default = ["luals-basic""]
19+
default = ["luals-basic"]
2020
no_format = ["luals-basic/no_format"]

0 commit comments

Comments
 (0)