-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (26 loc) · 686 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (26 loc) · 686 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 = "doge_dns"
version = "1.0.2"
description = "The dns interaction component of the doge package"
homepage = "https://github.com/Dj-Codeman/doge"
repository = "https://github.com/Dj-Codeman/doge_dns"
license = "MIT"
authors = ["Darrion Whitfield <dwhitfield@ramfield.net>"]
edition = "2018"
[lib]
doctest = false
[dependencies]
# logging
log = "0.4"
# protocol parsing helper
byteorder = "1.3"
# printing of certain packets
base64 = "0.22"
# idna encoding
unic-idna = { version = "0.9.0", optional = true }
# mutation testing
[dev-dependencies]
pretty_assertions = "1.4"
[features]
default = [] # idna is enabled in the main dog crate
with_idna = ["unic-idna"]