-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (26 loc) · 843 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
[package]
name = "genson-rs"
authors = ["Junyu Wang <[email protected]>"]
version = "0.2.0"
edition = "2021"
description = "Extremely fast JSON Schema inference engine built in Rust"
homepage = "https://github.com/junyu-w/genson-rs"
repository = "https://github.com/junyu-w/genson-rs"
readme = "README.md"
license-file = "LICENSE"
keywords = ["json", "schema", "inference", "genson"]
categories = ["command-line-utilities", "parser-implementations"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
mimalloc = "0.1.41"
rayon = "1.10.0"
regex = "1.10.4"
serde_json = "1.0.116"
simd-json = "0.13.10"
[dev-dependencies]
codspeed-criterion-compat = "2.6.0"
criterion = "0.3"
[[bench]]
name = "build_schema_bench"
harness = false