[package]
edition = "2024"
name = "dh"
version = "0.11.0"
authors = ["Leonard Lesinski <84378319+Le0X8@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Data handling in Rust, made easy."
documentation = "https://docs.rs/dh"
readme = "README.md"
keywords = [
"data",
"read",
"write",
"rw",
]
categories = [
"data-structures",
"encoding",
"parsing",
]
license = "MIT"
repository = "https://github.com/Le0X8/dh"
[features]
vli = []
[lib]
name = "dh"
path = "src/lib.rs"
[[test]]
name = "copy"
path = "tests/copy.rs"
[[test]]
name = "read"
path = "tests/read.rs"
[[test]]
name = "read_at"
path = "tests/read_at.rs"
[[test]]
name = "write"
path = "tests/write.rs"
[[test]]
name = "write_at"
path = "tests/write_at.rs"