[package]
edition = "2021"
rust-version = "1.75"
name = "safe-read"
version = "0.1.0"
authors = ["Albert Hui <albert.hui@gmail.com>"]
build = false
exclude = [
"fuzz/",
".github/",
"docs/",
"mkdocs.yml",
"deny.toml",
"renovate.json",
".pre-commit-config.yaml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Panic-free bounded integer readers over untrusted byte slices — the shared front door for offset/length fields parsed from attacker-controllable forensic images."
homepage = "https://github.com/SecurityRonin/safe-read"
documentation = "https://docs.rs/safe-read"
readme = "README.md"
keywords = [
"forensics",
"parsing",
"bytes",
"no-panic",
]
categories = [
"parsing",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/SecurityRonin/safe-read"
[lib]
name = "safe_read"
path = "src/lib.rs"
[dependencies]
[lints.rust]
unsafe_code = "forbid"