fix main function
This commit is contained in:
parent
e980c597f1
commit
a36f541429
3 changed files with 3 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -765,7 +765,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "panorama"
|
name = "panorama"
|
||||||
version = "0.1.0"
|
version = "0.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "panorama"
|
name = "panorama"
|
||||||
version = "0.1.0"
|
version = "0.0.1"
|
||||||
authors = ["Michael Zhang <mail@mzhang.io>"]
|
authors = ["Michael Zhang <mail@mzhang.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "A customizable personal information manager."
|
description = "A customizable personal information manager."
|
||||||
|
|
|
@ -7,7 +7,7 @@ use futures::future::TryFutureExt;
|
||||||
use structopt::StructOpt;
|
use structopt::StructOpt;
|
||||||
use tokio::sync::{mpsc, oneshot};
|
use tokio::sync::{mpsc, oneshot};
|
||||||
use xdg::BaseDirectories;
|
use xdg::BaseDirectories;
|
||||||
use panorama::config::{spawn_config_watcher, MailConfig};
|
use panorama::{config::{spawn_config_watcher, MailConfig}, mail, ui};
|
||||||
|
|
||||||
#[derive(Debug, StructOpt)]
|
#[derive(Debug, StructOpt)]
|
||||||
#[structopt(author, about)]
|
#[structopt(author, about)]
|
||||||
|
|
Loading…
Reference in a new issue