mirror of
https://codeberg.org/1414codeforge/df-serialize.git
synced 2024-12-26 09:32:29 +01:00
28 lines
579 B
Lua
28 lines
579 B
Lua
rockspec_format = "3.0"
|
|
package = "df-serialize"
|
|
version = "scm-1"
|
|
source = {
|
|
url = "git://git.doublefourteen.io/lua/df-serialize.git"
|
|
}
|
|
description = {
|
|
summary = "A brainless Lua table serialization library",
|
|
homepage = "https://git.doublefourteen.io/lua/df-serialize",
|
|
maintainer = "The DoubleFourteen Code Forge <info@doublefourteen.io>",
|
|
license = "zlib"
|
|
}
|
|
dependencies = {
|
|
"lua >= 5.2"
|
|
}
|
|
test_dependencies = {
|
|
"busted"
|
|
}
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
["df-serialize"] = "init.lua"
|
|
}
|
|
}
|
|
test = {
|
|
type = "busted"
|
|
}
|