2022-04-11 18:43:44 +02:00
|
|
|
[package]
|
|
|
|
name = "json-depth-checker"
|
2022-04-25 15:55:38 +02:00
|
|
|
description = "A library that indicates if a JSON must be flattened"
|
2022-04-25 14:03:21 +02:00
|
|
|
publish = false
|
2022-04-11 18:43:44 +02:00
|
|
|
|
2023-02-15 13:51:07 +01:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
# description.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
readme.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
|
2022-04-11 18:43:44 +02:00
|
|
|
[dependencies]
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-07-03 17:09:29 +02:00
|
|
|
criterion = "0.5.1"
|
2022-04-11 18:43:44 +02:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "depth"
|
2022-04-13 11:47:20 +02:00
|
|
|
harness = false
|