-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 861 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 861 Bytes
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
[package]
name = "jaq-json"
version = "1.1.1"
authors = ["Michael Färber <michael.faerber@gedenkt.at>"]
edition = "2021"
license = "MIT"
readme = "../README.md"
description = "JSON values for jaq"
repository = "https://github.com/01mf02/jaq"
keywords = ["json", "query", "jq"]
categories = ["data-structures"]
rust-version = "1.65"
[features]
default = ["parse"]
parse = ["hifijson"]
[dependencies]
jaq-core = { version = "2.1.0", path = "../jaq-core" }
jaq-std = { version = "2.1.0", path = "../jaq-std" }
foldhash = { version = "0.1", default-features = false }
hifijson = { version = "0.2.0", default-features = false, features = ["alloc"], optional = true }
indexmap = { version = "2.0", default-features = false }
serde_json = { version = "1.0.81", default-features = false, optional = true }
[build-dependencies]
jaq-core = { path = "../jaq-core" }