versions
This commit is contained in:
parent
68f63b5a36
commit
0405b478eb
3 changed files with 6 additions and 2 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -638,7 +638,7 @@ checksum = "afb2e1c3ee07430c2cf76151675e583e0f19985fa6efae47d6848a3e2c824f85"
|
|||
|
||||
[[package]]
|
||||
name = "panorama-daemon"
|
||||
version = "0.1.0"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-trait",
|
||||
|
@ -648,6 +648,7 @@ dependencies = [
|
|||
"inotify",
|
||||
"log",
|
||||
"panorama-imap",
|
||||
"panorama-smtp",
|
||||
"serde",
|
||||
"stderrlog",
|
||||
"tokio",
|
||||
|
@ -694,6 +695,7 @@ name = "panorama-smtp"
|
|||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"nom",
|
||||
"panorama-proto-common",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "panorama-daemon"
|
||||
version = "0.1.0"
|
||||
version = "0.0.1"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
|
@ -12,6 +12,7 @@ hyper = { version = "0.14.11", features = ["server", "http2", "stream"] }
|
|||
inotify = { version = "0.9.3", features = ["stream"] }
|
||||
log = "0.4.14"
|
||||
panorama-imap = { path = "../imap" }
|
||||
panorama-smtp = { path = "../smtp" }
|
||||
serde = { version = "1.0.126", features = ["derive"] }
|
||||
stderrlog = "0.5.1"
|
||||
tokio = { version = "1.9.0", features = ["full"] }
|
||||
|
|
|
@ -14,3 +14,4 @@ workspace = ".."
|
|||
|
||||
[dependencies]
|
||||
nom = "6.2.1"
|
||||
panorama-proto-common = { path = "../proto-common" }
|
||||
|
|
Loading…
Reference in a new issue