-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
19 lines (17 loc) · 587 Bytes
/
Copy pathCargo.toml
File metadata and controls
19 lines (17 loc) · 587 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "livejq"
version = "2.0.0"
edition = "2021"
authors = ["Kunal Singh <kunal@kunalsin9h.com>"]
license = "MIT"
description = "An alternative jq implementation in rust for continuous parsing without crashing on invalid JSON. With filters"
readme = "README.md"
homepage = "https://github.com/kunalsin9h/livejq"
repository = "https://github.com/kunalsin9h/livejq"
keywords = ["cli", "jq", "json", "parsing"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.5.13", features = ["derive"] }
serde = "1.0.204"
serde_json = "1.0.122"
toml = "0.8.19"