-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 998 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (35 loc) · 998 Bytes
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
31
32
33
34
35
36
37
38
39
40
[package]
name = "lq"
description = "low overhead yq/tq/jq cli"
authors = [
"clux <sszynrae@gmail.com>",
]
version = "0.16.0"
license = "Apache-2.0"
readme = "./README.md"
repository = "https://github.com/clux/lq"
edition = "2024"
rust-version = "1.88.0"
categories = ["command-line-utilities", "parsing"]
keywords = ["yaml", "json", "toml", "query"]
[[bin]]
doc = false
name = "lq"
path = "lq.rs"
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["cargo", "derive"] }
serde_json = { version = "1.0.150", features = ["preserve_order"] }
toml = { version = "1.1.2", features = ["display", "preserve_order"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
serde-saphyr = "0.0.27"
[profile.release]
lto = true
panic = "abort"
[profile.dev]
debug = 0
#strip = "symbols"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ version }/lq-{ target }{ archive-suffix }"
bin-dir = "lq-{ target }/{ bin }{ format }"