You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
579 B
Plaintext
28 lines
579 B
Plaintext
2 years ago
|
rockspec_format = "3.0"
|
||
|
package = "df-serialize"
|
||
2 years ago
|
version = "scm-1"
|
||
2 years ago
|
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"
|
||
|
}
|