-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
62 lines (48 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "simd-json-derive"
version = "0.15.0"
authors = ["Heinz N. Gies <[email protected]>"]
edition = "2021"
license = "Apache-2.0/MIT"
description = "derives for simd-json"
documentation = "https://docs.rs/simd-json-derive"
readme = "README.md"
homepage = "https://docs.rs/simd-json-derive"
repository = "https://github.com/simd-lite/simd-json-derive/"
rust-version = "1.80"
[profile.bench]
debug = 2
[workspace]
members = ["simd-json-derive-int"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
simd-json-derive-int = { path = "./simd-json-derive-int", version = "0.15.0" }
value-trait = { version = "0.10.0" }
itoa = "1"
ryu = "1"
chrono = { version = "0.4", optional = true }
simd-json = { version = "0.14.0" }
heap-array = { version = "0.1.1", optional = true }
thiserror = "1.0.65"
[dev-dependencies]
serde_json = "1"
serde = "1"
criterion = "0.5"
rand = "0.8"
[features]
default = ["impl-chrono"]
impl-chrono = ["chrono"]
128bit = ["simd-json-derive-int/128bit", "simd-json/128bit"]
heap-array = ["dep:heap-array"]
[[example]]
name = "enum1"
[[example]]
name = "untagged"
[[example]]
name = "person"
[[bench]]
name = "value"
harness = false
[[bench]]
name = "mesh"
harness = false