[package]
edition = "2024"
name = "smooth-json"
version = "0.2.8"
authors = ["Jacob Latonis"]
build = false
exclude = [
"/.github",
"tests",
"src/bin",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "smooth-json is an opinionated, customizable utility to flatten serde_json Value variants into serde_json Objects ready for use in columnar or table-like usages."
readme = "readme.md"
keywords = [
"flatten",
"json",
"parquet",
"smooth",
"unnest",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/latonis/smooth-json"
[lib]
name = "smooth_json"
path = "src/lib.rs"
[[bench]]
name = "flatten"
path = "benches/flatten.rs"
harness = false
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"