-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (49 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
56 lines (49 loc) · 1.39 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "rsonpath-lib"
version = "0.9.1"
authors = ["Mateusz Gienieczko <mat@gienieczko.com>"]
description = "Blazing fast JSONPath query engine powered by SIMD. Core library of `rsonpath`."
readme = "README.md"
license = "MIT"
keywords = ["json", "jsonpath", "query", "search", "simd"]
exclude = [
"/tests",
"/proptest-regressions",
"/src/classification/classifier_correctness_tests.rs",
"/src/classification/classifier_correctness_tests.proptest-regressions",
]
categories = ["text-processing"]
repository = "https://github.com/V0ldek/rsonpath"
homepage = "https://v0ldek.github.io/rsonpath/"
edition = "2021"
rust-version = "1.67.1"
[lib]
bench = false
name = "rsonpath"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
[dependencies]
arbitrary = { version = "1.3.1", features = ["derive"], optional = true }
cfg-if = "1.0.0"
log = "0.4.21"
memmap2 = "0.9.4"
nom = "7.1.3"
rsonpath-syntax = { version = "0.3.1", path = "../rsonpath-syntax" }
smallvec = { version = "1.13.1", features = ["union"] }
static_assertions = "1.1.0"
thiserror = "1.0.58"
vector-map = "1.0.1"
[dev-dependencies]
itertools = "0.12.1"
pretty_assertions = "1.4.0"
proptest = "1.4.0"
test-case = "3.3.1"
[features]
default = ["simd"]
arbitrary = ["dep:arbitrary"]
simd = []
[[example]]
name = "approx_spans_usage"
path = "examples/approx_spans_usage.rs"
doc-scrape-examples = true