dns-parser-revived 0.10.0

Pure-rust DNS protocol parser library. This does not support network, only raw protocol parser.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "dns-parser-revived"
version = "0.10.0"
authors = [
    "Paul Colomiets <paul@colomiets.name>",
    "Levi Zim <rsworktech@outlook.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
    Pure-rust DNS protocol parser library. This does not support network, only
    raw protocol parser.
"""
homepage = "https://github.com/kxxt/dns-parser-revived"
documentation = "https://docs.rs/dns-parser-revived"
readme = "README.md"
keywords = [
    "dns",
    "domain",
    "name",
    "parser",
]
categories = ["parser-implementations"]
license = "MIT/Apache-2.0"

[lib]
name = "dns_parser_revived"
path = "src/lib.rs"

[[example]]
name = "sync_tcp_client"
path = "examples/sync_tcp_client.rs"

[[example]]
name = "sync_udp_client"
path = "examples/sync_udp_client.rs"

[dependencies.byteorder]
version = "1"

[dependencies.quick-error]
version = "1.0.0"

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies.matches]
version = "0.1.2"

[features]
serde = ["dep:serde"]