From fdc1cc7bc3d237ef4976f9f9d2ffc09b7ba164d5 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 1 Aug 2020 15:32:17 +0200 Subject: Move library to a separate crate Keep the binaries in the root crate, and add a new crate for the `github-suggestion` library. I want to add some library code to the CLI programs to extract common functionality between the different binaries. --- src/lib.rs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/lib.rs (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs deleted file mode 100644 index c082736..0000000 --- a/src/lib.rs +++ /dev/null @@ -1,11 +0,0 @@ -#![warn(rust_2018_idioms)] - - -pub mod client; -pub mod suggestion; - -mod url; - -pub use crate::client::Client; -pub use crate::suggestion::Suggestion; -pub use crate::url::SuggestionUrl; -- cgit v1.2.3