From 7046238ee1ea86702b5b8f111b6b1ba6fff4070c Mon Sep 17 00:00:00 2001 From: FourierTransformer Date: Tue, 30 Jul 2024 21:54:19 -0500 Subject: [PATCH] updated readme and rockspec --- README.md | 4 ++-- ...simdjson-0.0.2-1.rockspec => lua-simdjson-0.0.3-1.rockspec | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename lua-simdjson-0.0.2-1.rockspec => lua-simdjson-0.0.3-1.rockspec (96%) diff --git a/README.md b/README.md index 5bf7ee3..460c26f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # lua-simdjson [![Build Status](https://github.com/FourierTransformer/lua-simdjson/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/FourierTransformer/lua-simdjson/actions?query=branch%3Amaster) -A basic Lua binding to [simdjson](https://simdjson.org). The simdjson library is an incredibly fast JSON parser that uses SIMD instructions and fancy algorithms to parse JSON very quickly. It's been tested with LuaJIT 2.0/2.1 and Lua 5.1, 5.2, 5.3, and 5.4 on linux/osx. It has a general parsing mode and a lazy mode that uses a JSON pointer. +A basic Lua binding to [simdjson](https://simdjson.org). The simdjson library is an incredibly fast JSON parser that uses SIMD instructions and fancy algorithms to parse JSON very quickly. It's been tested with LuaJIT 2.0/2.1 and Lua 5.1, 5.2, 5.3, and 5.4 on linux/osx/windows. It has a general parsing mode and a lazy mode that uses a JSON pointer. Current simdjson version: 3.9.5 @@ -29,7 +29,7 @@ Both of these methods also have support to read files on disc with `parseFile` a * lua-simdjson uses `simdjson.null` to represent `null` values from parsed JSON. * Any application should use that for comparison as needed. * it uses `lua_pushnumber` and `lua_pushinteger` for JSON floats and ints respectively, so your Lua version may handle that slightly differently. - * `lua_pushinteger` uses signed ints. A number from JSON larger than LUA_MAXINTEGER will be represented as a float + * `lua_pushinteger` uses signed ints. A number from JSON larger than `LUA_MAXINTEGER` will be represented as a float/number * All other types map as expected. ### Parse some JSON diff --git a/lua-simdjson-0.0.2-1.rockspec b/lua-simdjson-0.0.3-1.rockspec similarity index 96% rename from lua-simdjson-0.0.2-1.rockspec rename to lua-simdjson-0.0.3-1.rockspec index 9ff5982..5b934d0 100644 --- a/lua-simdjson-0.0.2-1.rockspec +++ b/lua-simdjson-0.0.3-1.rockspec @@ -1,8 +1,8 @@ package="lua-simdjson" -version="0.0.2-1" +version="0.0.3-1" source = { url = "git://github.com/FourierTransformer/lua-simdjson", - tag = "0.0.2" + tag = "0.0.3" } description = { summary = "This is a simple Lua binding for simdjson",