-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 876 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
[package]
name = "nuq"
description = "A multi-format frontend to jq"
version = "0.1.3"
edition = "2021"
authors = ["Erik Schubert <[email protected]>"]
license = "Unlicense"
resolver = "2"
repository = "https://github.com/Nuckal777/nuq"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
atty = "0.2"
clap = { version = "4.4", features = ["derive"] }
jq-rs = "0.4"
ron = "0.8"
serde = "1.0"
serde_json = "1.0"
serde-transcode = "1.1"
serde_yaml = "0.9"
syntect = "5.1"
toml = "0.8"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/nuq", dest = "/usr/bin/nuq", mode = "0755" },
{ source = "LICENSE", dest = "/usr/share/doc/nuq/LICENSE", doc = true, mode = "0644" },
{ source = "README.md", dest = "/usr/share/doc/nuq/README.md", doc = true, mode = "0644" }
]