-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 705 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 705 Bytes
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
28
29
30
31
32
33
34
35
36
[package]
name = "dns-message-parser"
version = "0.9.0"
authors = ["LinkTed <link.ted@mailbox.org>"]
edition = "2018"
readme = "README.md"
keywords = ["dns", "parser", "encode", "decode"]
description = "Libary to encode and decode DNS packets"
license = "BSD-3-Clause"
repository = "https://github.com/LinkTed/dns-message-parser"
include = [
"src/**/*.rs",
"tests/*.rs",
"examples/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
]
categories = [
"parser-implementations",
"encoding"
]
[dependencies]
base64 = "0.22"
bytes = "1"
hex = "0.4"
thiserror = "2"
[dev-dependencies]
criterion = "0.6"
[[bench]]
name = "message"
path = "benches/message.rs"
harness = false