Update the list of milli's subcrates

This commit is contained in:
Kerollmops 2022-04-25 15:55:38 +02:00
parent e1e362fa43
commit fb192aaa9f
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
6 changed files with 9 additions and 9 deletions

View file

@ -2,8 +2,7 @@
name = "json-depth-checker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description = "A library that indicates if a JSON must be flattened"
[dependencies]
serde_json = "1.0"

View file

@ -1,6 +1,6 @@
use serde_json::Value;
/// Your json MUST BE valid and generated by `serde_json::to_vec` before being
/// Your json MUST BE valid and generated by `serde_json::to_vec` before being
/// sent in this function. This function is DUMB and FAST but makes a lot of
/// asumption about the way `serde_json` will generate its input.
///