codemp/dist/lua/codemp-0.0.1-2.rockspec

40 lines
884 B
Text
Raw Normal View History

2024-09-10 13:57:50 +02:00
package = "codemp"
2024-09-10 14:01:09 +02:00
version = "0.0.1-2"
2024-09-10 13:57:50 +02:00
source = {
2024-09-10 14:01:09 +02:00
url = "git+https://github.com/hexedtech/codemp",
branch = "dev",
2024-09-10 13:57:50 +02:00
}
dependencies = {
"Lua >= 5.1",
"luarocks-build-rust-mlua",
}
description = {
summary = "code multiplexer -- lua bindings",
detailed = [[
codemp is a cooperative live editing framework by hexed.technology
it provides a batteries-included CRDT-powered client capable of keeping
in sync local buffers and sharing cursor event to all workspace members.
this is a native lua library, completely written in Rust
]],
homepage = "https://code.mp",
license = "GPL-3.0",
-- labels = { "codemp", "cooperative", "ffi", "editor", "rust" },
maintainer = "alemi <me@alemi.dev>",
}
build = {
type = "rust-mlua",
modules = {
["codemp_native"] = "codemp",
},
target_path = "../..",
include = {
"codemp.lua",
"annotations.lua",
}
}