[package]
edition = "2021"
rust-version = "1.81"
name = "sort-keys"
version = "0.1.0"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Recursively sort the keys of a JSON object, for deterministic output. A faithful port of the sort-keys npm package."
homepage = "https://github.com/trananhtung/sort-keys"
documentation = "https://docs.rs/sort-keys"
readme = "README.md"
keywords = [
"sort",
"keys",
"object",
"json",
"deterministic",
]
categories = [
"text-processing",
"value-formatting",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/sort-keys"
[lib]
name = "sort_keys"
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"