From 245fa164d6cd693191c78571522cd3066a431ac9 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Tue, 27 Oct 2020 09:13:30 +0200 Subject: [PATCH] remove unnecessary `extern crate` from lib.rs --- src/lib.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 5ce52839..000e4e63 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -23,11 +23,6 @@ //! * [cloudevents-sdk-reqwest](https://docs.rs/cloudevents-sdk-reqwest): Integration with [reqwest](https://github.com/seanmonstar/reqwest) //! -extern crate serde; -extern crate serde_json; -extern crate serde_value; -extern crate snafu; - /// Provides [`Event`] data structure, [`EventBuilder`] and other facilities to work with [`Event`] pub mod event; /// Provides facilities to implement Protocol Bindings