Skip to content

Commit

Permalink
feat: allow building with the system Lua
Browse files Browse the repository at this point in the history
  • Loading branch information
Kladki committed Apr 28, 2024
1 parent 681612f commit 122c5f8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
4 changes: 4 additions & 0 deletions yazi-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
1 change: 0 additions & 1 deletion yazi-dds/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion yazi-fm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
1 change: 0 additions & 1 deletion yazi-plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
1 change: 0 additions & 1 deletion yazi-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 122c5f8

Please sign in to comment.