From 68d78670b655f763d5dcea7cce221f390155d889 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Thu, 14 Nov 2019 15:57:15 +0200 Subject: Rename the module So that Cargo does not think there is a library, and does not run tests twice (for the library and for the executable). --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 781018f..d6e6b85 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,8 +9,8 @@ use docopt::Docopt; use serde::Deserialize; use std::collections::LinkedList; -mod lib; -use lib::partition_days; +mod partition; +use partition::partition_days; const USAGE: &'static str = " Usage: frotate [-k|-d] [-b ] ... -- cgit v1.2.3