update rockspec, remove 5.4 limitation

This commit is contained in:
leaf corcoran
2020-10-02 15:04:31 -07:00
committed by Thijs Schreijer
parent c5d1718769
commit a5c8be9dc6
2 changed files with 4 additions and 4 deletions

30
date-2.1.2-3.rockspec Normal file
View File

@@ -0,0 +1,30 @@
package = "date"
version = "2.1.2-3"
description = {
summary = "Date & Time module for Lua 5.x",
detailed = [[
Pure Lua Date & Time module for Lua 5.x featuring date and time string
parsing, time addition & subtraction, time span calculation, support for
ISO 8601 dates, local time support, strftime-like formatting.
]],
license = "MIT",
homepage = "https://github.com/Tieske/date",
}
dependencies = {
"lua >= 5.0, < 5.5"
}
source = {
url = "https://github.com/Tieske/date/archive/version_2.1.2.tar.gz",
dir = "date-version_2.1.2",
}
build = {
type = "builtin",
modules = {
date = "src/date.lua"
}
}