map-obj 0.1.0

Recursively map over the keys and values of a JSON object with a closure. A faithful port of the map-obj npm package.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.81"
name = "map-obj"
version = "0.1.0"
authors = ["trananhtung"]
build = false
exclude = [
    "/.github",
    "/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Recursively map over the keys and values of a JSON object with a closure. A faithful port of the map-obj npm package."
homepage = "https://github.com/trananhtung/map-obj"
documentation = "https://docs.rs/map-obj"
readme = "README.md"
keywords = [
    "map",
    "object",
    "keys",
    "values",
    "json",
]
categories = [
    "data-structures",
    "value-formatting",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/map-obj"

[lib]
name = "map_obj"
path = "src/lib.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.serde_json]
version = "1"
features = ["preserve_order"]

[lints.clippy]
all = "warn"
pedantic = "warn"

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"