diff --git a/tinytoml-0.0.1-1.rockspec b/tinytoml-0.0.1-1.rockspec new file mode 100644 index 0000000..a9c1d1f --- /dev/null +++ b/tinytoml-0.0.1-1.rockspec @@ -0,0 +1,31 @@ +package = "tinytoml" +version = "0.0.1-1" + +source = { + url = "git://github.com/FourierTransformer/tinytoml.git", + tag = "0.0.1" +} + +description = { + summary = "A pure Lua TOML parser", + detailed = [[ + tinytoml is an easy to use TOML parser library for Lua. It can read in TOML files or load from a string. + It supports all TOML 1.0.0 features including validating UTF-8 and datetimes with good error messages. + ]], + homepage = "https://github.com/FourierTransformer/tinytoml", + maintainer = "Fourier Transformer ", + license = "MIT" +} + +dependencies = { + "lua >= 5.1", +} + +build = { + type = "builtin", + modules = { + ["tinytoml"] = "tinytoml.lua" + }, +} + + diff --git a/tinytoml.lua b/tinytoml.lua index 4f5dd66..582d803 100644 --- a/tinytoml.lua +++ b/tinytoml.lua @@ -19,7 +19,7 @@ local tinytoml = {} -tinytoml._VERSION = "tinytoml 0.0.0" +tinytoml._VERSION = "tinytoml 0.0.1" tinytoml._DESCRIPTION = "a single-file pure Lua TOML parser" tinytoml._URL = "https://github.com/FourierTransformer/tinytoml" tinytoml._LICENSE = "MIT" diff --git a/tinytoml.tl b/tinytoml.tl index 165d418..946cad9 100644 --- a/tinytoml.tl +++ b/tinytoml.tl @@ -19,7 +19,7 @@ local record tinytoml _LICENSE: string end -tinytoml._VERSION = "tinytoml 0.0.0" +tinytoml._VERSION = "tinytoml 0.0.1" tinytoml._DESCRIPTION = "a single-file pure Lua TOML parser" tinytoml._URL = "https://github.com/FourierTransformer/tinytoml" tinytoml._LICENSE = "MIT"