Skip to content

Commit

Permalink
lua is unreleased now
Browse files Browse the repository at this point in the history
Signed-off-by: tison <[email protected]>
  • Loading branch information
tisonkun committed Feb 1, 2025
1 parent 54362ff commit 411231d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
28 changes: 28 additions & 0 deletions bindings/lua/opendal-0.1.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package = "opendal"
version = "0.1.0-1"

source = {
url = "git+https://github.com/apache/opendal/",
}

description = {
summary = "Apache OpenDAL™ LUA binding: access data freely. ",
detailed = [[
OpenDAL is a data access layer that allows users to easily and efficiently retrieve data from various storage services in a unified way.
]],
homepage = "https://opendal.apache.org/",
license = " Apache-2.0"
}

dependencies = {
"lua >= 5.1",
"luarocks-build-rust-mlua = 0.2.0",
}

build = {
type = "rust-mlua",
modules = {
["opendal"] = "opendal_lua",
},
target_path = "target",
}
2 changes: 0 additions & 2 deletions dev/src/release/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ pub fn all_packages() -> Vec<Package> {
let c = make_package("bindings/c", "0.45.3", vec![core.clone()]);
let cpp = make_package("bindings/cpp", "0.45.15", vec![core.clone()]);
let java = make_package("bindings/java", "0.47.7", vec![core.clone()]);
let lua = make_package("bindings/lua", "0.1.13", vec![core.clone()]);
let nodejs = make_package("bindings/nodejs", "0.47.9", vec![core.clone()]);
let python = make_package("bindings/python", "0.45.14", vec![core.clone()]);

Expand All @@ -103,7 +102,6 @@ pub fn all_packages() -> Vec<Package> {
c,
cpp,
java,
lua,
nodejs,
python,
]
Expand Down

0 comments on commit 411231d

Please sign in to comment.