rusty_dns 0.0.2

A DNS implementation with no dependencies
Documentation
[package]

name = "rusty_dns"

version = "0.0.2"

authors = ["willfleetw"]

edition = "2018"

license = "MIT"

description = "A DNS implementation with no dependencies"

repository = "https://github.com/willfleetw/rusty_dns"

readme = "README.md"



# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



[lib]

name = "rusty_dns"           # The name of the target.

path = "src/lib.rs"    # The source file of the target.

test = true            # Is tested by default.

doctest = false        # Documentation examples are tested by default.



[[bin]]

name = "rusty_dns"

test = false



[dependencies]