-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 895 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
[package]
name = "fltn"
version = "0.2.8"
authors = ["Jeremy Nicklas <jeremywnicklas@gmail.com>"]
edition = "2024"
description = "Flattens a serialized data structure making it greppable"
license = "MIT"
keywords = ["gron", "json", "yaml"]
homepage = "https://github.com/nickjer/fltn"
repository = "https://github.com/nickjer/fltn"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap = { version = "4.3", features = ["derive"] }
colored = "3.0"
csv = "1.2"
jsonpath-rust = "0.7"
mime = "0.3"
mime_guess = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order", "unbounded_depth"] }
serde_stacker = "0.1"
serde_yaml = "0.9"
toml = "0.8"
unicode_categories = "0.1"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"