aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/local/history.rs1
-rw-r--r--src/local/import.rs1
-rw-r--r--src/main.rs4
3 files changed, 1 insertions, 5 deletions
diff --git a/src/local/history.rs b/src/local/history.rs
index bb8b9123..893edbb7 100644
--- a/src/local/history.rs
+++ b/src/local/history.rs
@@ -1,6 +1,5 @@
use std::env;
-use hostname;
use uuid::Uuid;
#[derive(Debug)]
diff --git a/src/local/import.rs b/src/local/import.rs
index 0b237814..e8552397 100644
--- a/src/local/import.rs
+++ b/src/local/import.rs
@@ -4,7 +4,6 @@
use std::fs::File;
use std::io::{BufRead, BufReader};
-use chrono::{TimeZone, Utc};
use eyre::{eyre, Result};
use crate::local::history::History;
diff --git a/src/main.rs b/src/main.rs
index 920cd0a3..835ebc86 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,4 +1,3 @@
-use std::env;
use std::path::PathBuf;
use directories::ProjectDirs;
@@ -8,10 +7,9 @@ use uuid::Uuid;
#[macro_use]
extern crate log;
-use pretty_env_logger;
use command::{history::HistoryCmd, import::ImportCmd};
-use local::database::{Database, SqliteDatabase};
+use local::database::SqliteDatabase;
use local::history::History;
mod command;