mirror of
https://github.com/FourierTransformer/tinytoml.git
synced 2026-01-26 07:37:58 +00:00
## Changes - All options are runtime type checked - Default options now specified in the codebase - Removed `assign_value_function` (should offer a nice speedup in regular Lua) - Modified decoder tests to re-add toml-test tags, so this is no longer needed - NOTE: this does mean that the toml-test fails for non Lua 5.3-5.5. - Added comparison table to README with other TOML parsers - Can now specify encoding dates/times as strings _or tables!_
35 lines
818 B
Lua
35 lines
818 B
Lua
package = "tinytoml"
|
|
version = "1.0.0-1"
|
|
|
|
source = {
|
|
url = "git://github.com/FourierTransformer/tinytoml.git",
|
|
tag = "1.0.0"
|
|
}
|
|
|
|
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 them from a string.
|
|
It supports all TOML 1.1.0 features including parsing strings, numbers, datetimes, arrays, inline-tables and even validating UTF-8 with good error messages if anything fails!
|
|
]],
|
|
homepage = "https://github.com/FourierTransformer/tinytoml",
|
|
license = "MIT"
|
|
}
|
|
|
|
dependencies = {
|
|
"lua >= 5.1",
|
|
}
|
|
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
["tinytoml"] = "tinytoml.lua"
|
|
},
|
|
install = {
|
|
lua = {
|
|
["tinytoml"] = "tinytoml.tl"
|
|
}
|
|
}
|
|
}
|
|
|