-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
37 lines (34 loc) · 911 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
[package]
name = "jsonata-rs"
version = "0.3.3"
edition = "2021"
license = "Apache-2.0"
authors = ["Stedi"]
description = "An (incomplete) implementation of JSONata in Rust"
homepage = "https://github.com/Stedi/jsonata-rs/"
repository = "https://github.com/Stedi/jsonata-rs/"
keywords = ["jsonata", "json"]
categories = ["command-line-utilities", "compilers", "parser-implementations"]
[dependencies]
chrono = "0.4.38"
clap = { version = "4.5.4", features = ["derive"] }
bitflags = "2.5.0"
bumpalo = { version = "3.16.0", features = [
"collections",
"boxed",
"allocator-api2",
] }
hashbrown = "0.15.0"
dtoa = "1.0.9"
base64 = "0.22.1"
serde_json = "1.0.117"
rand = "0.8.5"
regress = "0.10.1"
num-format = "0.4.4"
uuid = { version = "1.8.0", features = ["fast-rng", "v4", "v7"] }
[dev-dependencies]
test-case = "3.3.1"
test-generator = "0.3.1"
regress = "0.10.1"
[build-dependencies]
glob = "0.3"