dnstap 0.1.8

Dnstap protocol library for DNS query and response logging with Protocol Buffers and Frame Streams.
1
2
3
4
5
6
7
8
9
10
fn main() {
    protobuf_codegen::Codegen::new()
        .pure()
        .out_dir("src")
        .inputs(["src/dnstap_pb.proto"])
        .include("src")
        .customize(protobuf_codegen::Customize::default())
        .run()
        .expect("protoc");
}