[package]
edition = "2018"
name = "dnstap"
version = "0.1.8"
authors = ["Frank Denis <github@pureftpd.org>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dnstap protocol library for DNS query and response logging with Protocol Buffers and Frame Streams."
homepage = "https://github.com/jedisct1/rust-dnstap"
readme = "README.md"
keywords = [
"dns",
"dnstap",
"logging",
"protobuf",
"framestream",
]
categories = [
"encoding",
"network-programming",
"value-formatting",
]
license = "ISC"
repository = "https://github.com/jedisct1/rust-dnstap"
[badges.travis-ci]
repository = "jedisct1/rust-dnstap"
[lib]
name = "dnstap"
path = "src/lib.rs"
[dependencies.framestream]
version = "0.2.5"
[dependencies.mio]
version = "0.6"
[dependencies.protobuf]
version = "3.7.2"
[build-dependencies.protobuf-codegen]
version = "3.7.2"
[profile.release]
opt-level = 3
lto = true
panic = "abort"