[package] name = "dog" version = "0.1.0-pre" authors = ["Benjamin Sago "] edition = "2018" exclude = ["/completions/*", "/man/*", "/xtests/*", "/clippy.toml", "/screenshots.png", "/README.md"] [[bin]] name = "dog" path = "src/main.rs" [workspace] members = [ "dns", "dns-transport", ] [dependencies] # dns stuff dns = { path = "./dns" } dns-transport = { path = "./dns-transport" } # command-line ansi_term = "0.12" atty = "0.2" getopts = "0.2" # transaction ID generation rand = "0.7" # json serde = "1.0" serde_json = "1.0" # logging env_logger = "0.7" log = "0.4" [build-dependencies] datetime = "0.5" regex = "1.3" [dev-dependencies] pretty_assertions = "0.6"