-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
33 lines (27 loc) · 882 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
[package]
name = "serde_json_borrow"
categories = ["parsing", "parser-implementations", "encoding"]
authors = ["Pascal Seitz <[email protected]>"]
description = "Provides JSON deserialization into a borrowed DOM"
version = "0.7.1"
edition = "2021"
license = "MIT"
keywords = ["JSON", "serde", "deserialization", "ref", "borrowed"]
exclude = ["benches/**/*.json"]
readme = "README.md"
repository = "https://github.com/PSeitz/serde_json_borrow"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = "1.0.145"
serde_json = "1.0.86"
[dev-dependencies]
binggan = "0.14.0"
simd-json = "0.13.10"
[features]
default = ["cowkeys"]
# Uses Cow<str> instead of &str. This enables support for escaped data in keys.
# But it costs some deserialization performance.
cowkeys = []
[[bench]]
name = "bench"
harness = false