-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (36 loc) · 1021 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
41
42
43
[package]
name = "jindex"
version = "0.10.0"
authors = ["Clark Kampfe <[email protected]>"]
license = "BSD-3-Clause"
description = "Enumerate the paths through a JSON document"
homepage = "https://github.com/ckampfe/jindex"
repository = "https://github.com/ckampfe/jindex"
documentation = "https://docs.rs/jindex/"
readme = "README.md"
keywords = ["json", "paths"]
categories = ["command-line-utilities"]
edition = "2021"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
itoa = "1"
jemalloc = { package = "tikv-jemallocator", version = "0.5", optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
unicode-ident = "1"
[target.'cfg(target_family = "unix")'.dependencies]
nix = { version = "0.26", default-features = false, features = ["signal"] }
[features]
default = ["jemalloc"]
[profile.release]
codegen-units = 1
lto = true
[dev-dependencies]
criterion = "0.4"
[[bench]]
name = "benchmark"
harness = false
[profile.bench]
codegen-units = 1
lto = true