[package]
edition = "2024"
rust-version = "1.88"
name = "jql"
version = "8.3.0"
authors = ["Davy Duperron <yamafaktory@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "jql - JSON Query Language - is a fast and simple command-line tool to manipulate JSON data."
readme = "README.md"
keywords = [
"cli",
"json",
"terminal",
"tool",
"query",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yamafaktory/jql"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ name }-v{ version }/{ name }-v{ version }-{ target }{ archive-suffix }"
[[bin]]
name = "jql"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.clap]
version = "4.6.6"
features = ["derive"]
[dependencies.colored_json]
version = "5.0.0"
[dependencies.jql-runner]
version = "8.3.0"
[dependencies.serde]
version = "1.0.229"
[dependencies.serde_json]
version = "1.0.151"
features = [
"preserve_order",
"unbounded_depth",
]
[dependencies.serde_stacker]
version = "0.1.14"
[target.'cfg(not(target_arch = "loongarch64"))'.dependencies.mimalloc]
version = "0.1"
default-features = false
[lints.clippy]
all = "deny"
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
redundant_lifetimes = "warn"
unit_bindings = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
unused_qualifications = "warn"
[lints.rust.nonstandard_style]
level = "deny"
priority = -1