[package]
edition = "2021"
name = "icentral-json"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust crate facilitating the creation and serialization of JSON structures with two-level named member hierarchies using macros."
readme = "README.md"
keywords = [
"rust",
"json",
"serialization",
"macros",
"nestedstructures",
]
categories = [
"data-structures",
"parsing",
"network-programming",
]
license = "MIT OR Apache-2.0"
[lib]
name = "icentral_json"
path = "src/lib.rs"
[dependencies.icentral-3p]
version = "0.1.0"
[dependencies.serde]
version = "1.0.210"
features = ["derive"]
[dependencies.serde_derive]
version = "1.0.210"
[dependencies.serde_json]
version = "1.0.128"