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)]