1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
overlay = "."
uploaders = ["Ivan Carvalho <ivancarvalho@google.com>"]
collapse_features = true
[source]
section = "utils"
[packages.bin]
summary = "JQ clone focussed on correctness, speed, and simplicity"
description = """
jaq is a clone of the JSON data processing tool jq.jaq aims to support a large subset
of jq's syntax and operations.
jaq focuses on three goals:
* **Correctness**:
jaq aims to provide a more correct and predictable implementation of jq,
while preserving compatibility with jq in most cases.
* **Performance**:
jaq avoids the long start-up time of jq 1.6.
This can be particularly seen when processing a large number of small files.
Although the startup time has been vastly improved in jq 1.7,
jaq is still faster than jq on many other benchmarks.
* **Simplicity**:
jaq aims to have a simple and small implementation, in order to
reduce the potential for bugs and to
facilitate contributions.
"""
depends = ["libmimalloc3"]
|