codemp/dist/lua/codemp-0.7.3-1.rockspec

37 lines
901 B
Text
Raw Normal View History

2024-09-10 13:57:50 +02:00
package = "codemp"
2024-10-01 19:49:11 +02:00
version = "0.7.3-1"
2024-09-10 13:57:50 +02:00
source = {
2024-09-17 19:33:27 +02:00
url = "git+https://github.com/hexedtech/codemp",
2024-10-01 19:49:11 +02:00
tag = "v0.7.3",
2024-09-10 13:57:50 +02:00
}
dependencies = {
"Lua >= 5.1",
"luarocks-build-rust-mlua",
}
description = {
2024-09-17 19:33:27 +02:00
summary = "code multiplexer -- fast, safe, collaborative editor plugin ecosystem",
detailed = [[
2024-09-10 13:57:50 +02:00
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
2024-09-17 19:33:27 +02:00
]],
homepage = "https://code.mp",
license = "GPL-3.0",
2024-09-10 13:57:50 +02:00
-- labels = { "codemp", "cooperative", "ffi", "editor", "rust" },
maintainer = "alemi <me@alemi.dev>",
}
build = {
type = "rust-mlua",
2024-09-17 19:33:27 +02:00
modules = { "codemp" },
2024-09-10 13:57:50 +02:00
target_path = "../..",
include = {
["dist/lua/annotations.lua"] = "codemp-annotations.lua",
2024-09-10 13:57:50 +02:00
}
}