[package]
edition = "2021"
name = "simple-dns"
version = "0.11.3"
authors = ["Ilson Roberto Balliego Junior <ilson.balliego@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation to parse and write DNS packets"
readme = "README.md"
keywords = [
"dns",
"parser",
]
categories = [
"parser-implementations",
"network-programming",
"no-std",
]
license = "MIT"
repository = "https://github.com/balliegojr/simple-dns"
[package.metadata.docs.rs]
all-features = true
[features]
alloc = []
default = ["std"]
std = []
[lib]
name = "simple_dns"
path = "src/lib.rs"
[[test]]
name = "packet_tests"
path = "tests/packet_tests.rs"
[dependencies.bitflags]
version = "2.11"