-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 956 Bytes
/
Cargo.toml
File metadata and controls
40 lines (33 loc) · 956 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
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "asmjson"
version = "0.2.6"
edition = "2024"
description = "A fast JSON parser using AVX-512/AVX2/SWAR classifiers"
authors = ["Amy Thomason"]
license = "MIT"
repository = "https://github.com/atomicincrement/asmjson"
readme = "README.md"
keywords = ["json", "parser", "simd", "avx512", "fast"]
categories = ["parsing", "encoding"]
[features]
serde = ["dep:serde"]
[dependencies]
serde = { version = "1", features = ["derive"], optional = true }
[build-dependencies]
cc = "1"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
memmap2 = "0.9"
rayon = "1"
serde = { version = "1", features = ["derive"] }
simd-json = { version = "0.17", default-features = false }
serde_json = "1"
sonic-rs = "0.5.7"
[[example]]
name = "serde_example"
required-features = ["serde"]
[[bench]]
name = "parse"
harness = false
[profile.bench]
debug = 1 # line tables — enough for perf symbols without bloat