summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Wiesner <sebastian@swsnr.de>2018-12-13 11:18:50 +0100
committerSebastian Wiesner <sebastian@swsnr.de>2018-12-13 11:18:50 +0100
commit040b821cfcb832f8fb4e32e64538082bf8094661 (patch)
treef1a9b9b64ec8b030834b5f17edd638255e26b91c
parent5eaf7df7d5359726627e031a8b91106356e4d1d5 (diff)
Remove redundant warning setting
We have no trait objects anymore.
-rw-r--r--src/lib.rs2
-rw-r--r--src/main.rs2
-rw-r--r--tests/formatting.rs2
3 files changed, 0 insertions, 6 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 265c283..c6e3cf8 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -13,8 +13,6 @@
// limitations under the License.
#![deny(warnings, missing_docs, clippy::all)]
-// Warn about deprecated trait object syntax
-#![deny(bare_trait_objects)]
//! Write markdown to TTYs.
diff --git a/src/main.rs b/src/main.rs
index 45b7b15..428a024 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -13,8 +13,6 @@
// limitations under the License.
#![deny(warnings, clippy::all)]
-// Warn about deprecated trait object syntax
-#![deny(bare_trait_objects)]
//! Show CommonMark documents on TTYs.
diff --git a/tests/formatting.rs b/tests/formatting.rs
index 8d2463b..cb1c669 100644
--- a/tests/formatting.rs
+++ b/tests/formatting.rs
@@ -13,8 +13,6 @@
// limitations under the License.
#![deny(warnings, missing_docs, clippy::all)]
-// Warn about deprecated trait object syntax
-#![deny(bare_trait_objects)]
use mdcat;