[package]
edition = "2024"
name = "serde_hash"
version = "0.2.0"
authors = ["Drew Chase"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for seamlessly integrating HashIds with Serde serialization and deserialization. This library provides a convenient way to obfuscate numeric IDs in your JSON output without changing your application's internal data structures."
readme = "README.MD"
license-file = "LICENSE"
repository = "https://github.com/Drew-Chase/serde_hash"
[lib]
name = "serde_hash"
path = "src/lib.rs"
[[test]]
name = "test_serialization"
path = "tests/test_serialization.rs"
[dependencies.anyhow]
version = "1.0.101"
[dependencies.hash-ids]
version = "0.3.1"
[dependencies.log]
version = "0.4.29"
[dependencies.rand]
version = "0.9.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_hash_derive]
version = "0.2"
[dev-dependencies.serde_json]
version = "1.0.140"