Skip to content

Commit f8b5c13

Browse files
committed
Create rock
1 parent 81199a0 commit f8b5c13

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ LuaJIT 2.1.0-beta3 (Windows 11)
4444
| rxi/json | 0.005 | 0.009 | 0.00672 | x1 |
4545
| actboy168/json | 0.011 | 0.016 | 0.01295 | x1.92708 |
4646
| luadist/dkjson | 0.012 | 0.017 | 0.01426 | x2.12202 |
47-
| vurv78/qjson | 0.008 | 0.015 | 0.00939 | x1.39732 |
47+
| vurvdev/qjson | 0.008 | 0.015 | 0.00939 | x1.39732 |
4848
| grafi-tt/lunajson | 0.005 | 0.012 | 0.007095 | x1.0558 |
4949

5050
| Name (Encode) | Min | Max | Avg | Avg / Best |
5151
| --- | --- | --- | --- | --- |
5252
| rxi/json | 0.01 | 0.02 | 0.011745 | x7.93581 |
5353
| actboy168/json | 0.009 | 0.014 | 0.01077 | x7.27703 |
5454
| luadist/dkjson | 0.015 | 0.018 | 0.01559 | x10.5338 |
55-
| vurv78/qjson | 0.001 | 0.003 | 0.00148 | x1 |
55+
| vurvdev/qjson | 0.001 | 0.003 | 0.00148 | x1 |
5656
| grafi-tt/lunajson | 0.007 | 0.01 | 0.008645 | x5.84122 |
5757

5858
```
@@ -64,15 +64,15 @@ Lua 5.3 (WSL : Windows 11)
6464
| --- | --- | --- | --- | --- |
6565
| actboy168/json | 0.019036 | 0.024134 | 0.0204356 | x1.63325 |
6666
| rxi/json | 0.045677 | 0.059829 | 0.0487656 | x3.89742 |
67-
| vurv78/qjson | 0.01478 | 0.02029 | 0.0160733 | x1.28461 |
67+
| vurvdev/qjson | 0.01478 | 0.02029 | 0.0160733 | x1.28461 |
6868
| luadist/dkjson | 0.028986 | 0.038415 | 0.0314367 | x2.51247 |
6969
| grafi-tt/lunajson | 0.01162 | 0.015419 | 0.0125123 | x1 |
7070

7171
| Name (Encode) | Min | Max | Avg | Avg / Best |
7272
| --- | --- | --- | --- | --- |
7373
| actboy168/json | 0.016462 | 0.019902 | 0.0176806 | x3.0031 |
7474
| rxi/json | 0.016091 | 0.020716 | 0.0182224 | x3.09512 |
75-
| vurv78/qjson | 0.005352 | 0.008078 | 0.00588746 | x1 |
75+
| vurvdev/qjson | 0.005352 | 0.008078 | 0.00588746 | x1 |
7676
| luadist/dkjson | 0.022643 | 0.04247 | 0.0249368 | x4.23559 |
7777
| grafi-tt/lunajson | 0.011779 | 0.014569 | 0.0128647 | x2.1851 |
7878

benchmarks/bench.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ local loadstring = loadstring or load
4242
print("Downloading required files...")
4343

4444
local LIBS --[[@type table<string, table>]] = {
45-
["vurv78/qjson"] = require "qjson",
45+
["vurvdev/qjson"] = require "qjson",
4646
["rxi/json"] = loadstring(get("https://raw.githubusercontent.com/rxi/json.lua/master/json.lua"))(),
4747
["actboy168/json"] = loadstring(get("https://raw.githubusercontent.com/actboy168/json.lua/master/json.lua"))(),
4848
["luadist/dkjson"] = loadstring(get("https://raw.githubusercontent.com/LuaDist/dkjson/master/dkjson.lua"))(),

lux.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package = "qjson"
2+
version = "0.1.0"
3+
lua = ">=5.1"
4+
5+
[description]
6+
summary = "Tiny, quick JSON library for lua."
7+
maintainer = "vurvdev"
8+
labels = [ "json", "lua", "parser", "serializer", "data" ]
9+
license = "MIT"
10+
11+
[dependencies]
12+
13+
[source]
14+
url = "https://github.com/vurvdev/qjson.lua"
15+
tag = "v0.3.1"
16+
17+
[build]
18+
type = "builtin"

0 commit comments

Comments
 (0)