[package]
edition = "2024"
rust-version = "1.91.0"
name = "enxame-bencode"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bencode — the BitTorrent encoding as a typed AST: parse-don't-validate + canonical typed-emission encoder. Keystone of the pleme-io ENXAME BitTorrent suite."
homepage = "https://github.com/pleme-io/bencode"
documentation = "https://docs.rs/enxame-bencode"
readme = "README.md"
keywords = [
"bencode",
"bittorrent",
"torrent",
"encoding",
"pleme-io",
]
categories = [
"encoding",
"parser-implementations",
"network-programming",
]
license = "MIT"
repository = "https://github.com/pleme-io/bencode"
[lib]
name = "bencode"
path = "src/lib.rs"
[dependencies]
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true