From a36f541429b6a98e1f0c45482e372350a7e80efb Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Sun, 14 Feb 2021 06:27:48 -0600 Subject: [PATCH] fix main function --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7992455..1fae323 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -765,7 +765,7 @@ dependencies = [ [[package]] name = "panorama" -version = "0.1.0" +version = "0.0.1" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 9274b04..66c1bfa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "panorama" -version = "0.1.0" +version = "0.0.1" authors = ["Michael Zhang "] edition = "2018" description = "A customizable personal information manager." diff --git a/src/main.rs b/src/main.rs index e329e6e..aa2a783 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,7 +7,7 @@ use futures::future::TryFutureExt; use structopt::StructOpt; use tokio::sync::{mpsc, oneshot}; use xdg::BaseDirectories; -use panorama::config::{spawn_config_watcher, MailConfig}; +use panorama::{config::{spawn_config_watcher, MailConfig}, mail, ui}; #[derive(Debug, StructOpt)] #[structopt(author, about)]