mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +01:00
alemi.dev
4fcab00d34
Some checks are pending
test / test-unit (push) Waiting to run
test / test-beta (beta) (push) Blocked by required conditions
test / test-beta (nightly) (push) Blocked by required conditions
test / test-functional (push) Blocked by required conditions
test / test-build (java, macos-latest) (push) Blocked by required conditions
test / test-build (java, ubuntu-latest) (push) Blocked by required conditions
test / test-build (java, windows-latest) (push) Blocked by required conditions
test / test-build (js, macos-latest) (push) Blocked by required conditions
test / test-build (js, ubuntu-latest) (push) Blocked by required conditions
test / test-build (js, windows-latest) (push) Blocked by required conditions
test / test-build (lua, macos-latest) (push) Blocked by required conditions
test / test-build (lua, ubuntu-latest) (push) Blocked by required conditions
test / test-build (lua, windows-latest) (push) Blocked by required conditions
test / test-build (py, macos-latest) (push) Blocked by required conditions
test / test-build (py, ubuntu-latest) (push) Blocked by required conditions
test / test-build (py, windows-latest) (push) Blocked by required conditions
* chore: changed features layout now using `dep:` and `crate?/feat` syntaxes (introduced in rust 1.60). this may mess with lua rockspec
38 lines
951 B
Lua
38 lines
951 B
Lua
package = "codemp"
|
|
version = "0.8.2-1"
|
|
|
|
source = {
|
|
url = "git+https://github.com/hexedtech/codemp",
|
|
tag = "v0.8.2",
|
|
}
|
|
|
|
dependencies = {
|
|
"Lua >= 5.1",
|
|
"luarocks-build-rust-mlua",
|
|
}
|
|
|
|
description = {
|
|
summary = "code multiplexer -- fast, safe, collaborative editor plugin ecosystem",
|
|
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" },
|
|
default_features = false,
|
|
features = { "lua" },
|
|
target_path = "../..",
|
|
include = {
|
|
["dist/lua/annotations.lua"] = "codemp-annotations.lua",
|
|
}
|
|
}
|