File: Cargo.toml.orig

package info (click to toggle)
rust-dns-parser 0.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 324 kB
  • sloc: makefile: 2
file content (27 lines) | stat: -rw-r--r-- 698 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "dns-parser"
description = """
    Pure-rust DNS protocol parser library. This does not support network, only
    raw protocol parser.
"""
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["dns", "domain", "name", "parser"]
categories = ["parser-implementations"]
homepage = "https://github.com/tailhook/dns-parser"
documentation = "https://docs.rs/dns-parser"
version = "0.8.0"
authors = ["Paul Colomiets <paul@colomiets.name>"]

[features]
with-serde = ["serde", "serde_derive"]

[dependencies]
quick-error = "1.0.0"
byteorder = "1"

serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }

[dev-dependencies]
matches = "0.1.2"