diff --git a/yazi-cli/Cargo.toml b/yazi-cli/Cargo.toml index 6464852fd..e86af5991 100644 --- a/yazi-cli/Cargo.toml +++ b/yazi-cli/Cargo.toml @@ -8,6 +8,10 @@ description = "Yazi command-line interface" homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" +[features] +default = [ "vendored-lua" ] +vendored-lua = [ "yazi-dds/vendored-lua" ] + [dependencies] yazi-dds = { path = "../yazi-dds", version = "0.2.5" } diff --git a/yazi-dds/Cargo.toml b/yazi-dds/Cargo.toml index e7aa134b2..0ae3b7f1a 100644 --- a/yazi-dds/Cargo.toml +++ b/yazi-dds/Cargo.toml @@ -9,7 +9,6 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [features] -default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] diff --git a/yazi-fm/Cargo.toml b/yazi-fm/Cargo.toml index 6f7112fcd..e8f64e9e3 100644 --- a/yazi-fm/Cargo.toml +++ b/yazi-fm/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/sxyazi/yazi" [features] default = [ "vendored-lua" ] -vendored-lua = [ "mlua/vendored" ] +vendored-lua = [ "mlua/vendored", "yazi-dds/vendored-lua", "yazi-plugin/vendored-lua", "yazi-proxy/vendored-lua" ] [dependencies] yazi-adaptor = { path = "../yazi-adaptor", version = "0.2.5" } diff --git a/yazi-plugin/Cargo.toml b/yazi-plugin/Cargo.toml index 550338780..16fe0ba40 100644 --- a/yazi-plugin/Cargo.toml +++ b/yazi-plugin/Cargo.toml @@ -9,7 +9,6 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [features] -default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] diff --git a/yazi-proxy/Cargo.toml b/yazi-proxy/Cargo.toml index 09f5a61cf..b35f90c5d 100644 --- a/yazi-proxy/Cargo.toml +++ b/yazi-proxy/Cargo.toml @@ -9,7 +9,6 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [features] -default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies]