dynojson 0.2.0

Marshall/unmarshall JSON to/from DynamoDB JSON format
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.70"
name = "dynojson"
version = "0.2.0"
authors = ["cykruss"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Marshall/unmarshall JSON to/from DynamoDB JSON format"
homepage = "https://github.com/cykruss/dynojson"
readme = "README.md"
keywords = [
    "dynamodb",
    "json",
    "marshall",
    "unmarshall",
    "aws",
]
categories = ["encoding"]
license = "MIT"
repository = "https://github.com/cykruss/dynojson"

[features]
default = []
python = [
    "dep:pyo3",
    "dep:pythonize",
]

[lib]
name = "dynojson"
crate-type = [
    "lib",
    "cdylib",
]
path = "src/lib.rs"

[dependencies.pyo3]
version = "0.24"
features = [
    "extension-module",
    "abi3-py310",
]
optional = true

[dependencies.pythonize]
version = "0.24"
optional = true

[dependencies.rayon]
version = "1"

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

[dependencies.thiserror]
version = "2"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true