tinytoml/tinytoml-1.0.0-1.rockspec
FourierTransformer e72f5c4392
Added encode_datetime_as, removed assign value function, and added type checking for options (#15)
## 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!_
2026-01-09 19:52:20 -06:00

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"
}
}
}