-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (34 loc) · 901 Bytes
/
Cargo.toml
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/... implementation"
authors = [
"clux <[email protected]>",
]
version = "0.13.0"
license = "Apache-2.0"
readme = "./README.md"
repository = "https://github.com/clux/lq"
edition = "2021"
rust-version = "1.76.0"
categories = ["command-line-utilities", "parsing"]
[[bin]]
doc = false
name = "lq"
path = "lq.rs"
[dependencies]
anyhow = "1.0.81"
clap = { version = "4.5.4", features = ["cargo", "derive"] }
serde_json = "1.0.115"
toml = { version = "0.8.12", features = ["display"] }
serde_yaml = "0.9.34"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[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 }"