[package]
edition = "2024"
name = "json_shape_build"
version = "0.2.0"
authors = ["Julia Naomi <jnboeira@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library to build JSON shape data structures"
homepage = "https://github.com/naomijub/serde_json_shape"
readme = "README.md"
keywords = [
"JSON",
"serde",
"shape",
"build",
]
categories = [
"encoding",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/naomijub/serde_json_shape/json_shape"
resolver = "2"
[lib]
name = "json_shape_build"
path = "src/lib.rs"
[dependencies.checksum]
version = "0.2"
[dependencies.codegen]
version = "0.3"
[dependencies.convert_case]
version = "0.11"
[dependencies.json_shape]
version = "0.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = ["parsing"]
[lints.clippy]
all = "deny"
equatable_if_let = "deny"
missing_const_for_fn = "deny"
nursery = "deny"
option_if_let_else = "deny"
or_fun_call = "deny"
pedantic = "deny"
similar_names = "deny"
use_self = "deny"
wildcard_imports = "deny"
[lints.rust]
missing_docs = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]