This commit is contained in:
Michael Zhang 2021-08-09 17:10:19 -05:00
parent 68f63b5a36
commit 0405b478eb
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
3 changed files with 6 additions and 2 deletions

4
Cargo.lock generated
View file

@ -638,7 +638,7 @@ checksum = "afb2e1c3ee07430c2cf76151675e583e0f19985fa6efae47d6848a3e2c824f85"
[[package]] [[package]]
name = "panorama-daemon" name = "panorama-daemon"
version = "0.1.0" version = "0.0.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",
@ -648,6 +648,7 @@ dependencies = [
"inotify", "inotify",
"log", "log",
"panorama-imap", "panorama-imap",
"panorama-smtp",
"serde", "serde",
"stderrlog", "stderrlog",
"tokio", "tokio",
@ -694,6 +695,7 @@ name = "panorama-smtp"
version = "0.0.1" version = "0.0.1"
dependencies = [ dependencies = [
"nom", "nom",
"panorama-proto-common",
] ]
[[package]] [[package]]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "panorama-daemon" name = "panorama-daemon"
version = "0.1.0" version = "0.0.1"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
@ -12,6 +12,7 @@ hyper = { version = "0.14.11", features = ["server", "http2", "stream"] }
inotify = { version = "0.9.3", features = ["stream"] } inotify = { version = "0.9.3", features = ["stream"] }
log = "0.4.14" log = "0.4.14"
panorama-imap = { path = "../imap" } panorama-imap = { path = "../imap" }
panorama-smtp = { path = "../smtp" }
serde = { version = "1.0.126", features = ["derive"] } serde = { version = "1.0.126", features = ["derive"] }
stderrlog = "0.5.1" stderrlog = "0.5.1"
tokio = { version = "1.9.0", features = ["full"] } tokio = { version = "1.9.0", features = ["full"] }

View file

@ -14,3 +14,4 @@ workspace = ".."
[dependencies] [dependencies]
nom = "6.2.1" nom = "6.2.1"
panorama-proto-common = { path = "../proto-common" }