[package] name = "rustydns" version = "0.1.2" edition = "2021" description = "my first attempt at making a dns server with caching" repository = "https://gitlab.com/vaelio/rustydns" license = "GPL-3.0-only" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = "0.1.80" byteorder = "1.5.0" clap = { version = "4.5.4", features = ["derive", "env"] } mini-moka = { version = "0.10.3", features = ["sync"] } nom = "7.1.3" tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "net", "io-util"] }