diff --git a/Cargo.toml b/Cargo.toml index a4e65e2..9f870d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "doh-proxy" -version = "0.1.8" +version = "0.1.9" authors = ["Frank Denis "] description = "A DNS-over-HTTPS (DoH) proxy" keywords = ["dns","https","doh","proxy"] @@ -16,4 +16,3 @@ futures = "0.1" hyper = "0.12" tokio = "0.1" tokio-timer = "0.1" -clippy = {version = ">=0", optional = true} diff --git a/src/main.rs b/src/main.rs index 92aba60..47540e5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,3 @@ -#![cfg_attr(feature = "clippy", feature(plugin))] -#![cfg_attr(feature = "clippy", plugin(clippy))] - extern crate base64; extern crate clap; extern crate futures;