Rename to panorama imap
This commit is contained in:
parent
a36f541429
commit
983836c439
4 changed files with 13 additions and 16 deletions
18
Cargo.lock
generated
18
Cargo.lock
generated
|
@ -421,14 +421,6 @@ dependencies = [
|
|||
"winutil",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imap"
|
||||
version = "0.12.2"
|
||||
dependencies = [
|
||||
"assert_matches",
|
||||
"nom 6.1.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "inotify"
|
||||
version = "0.7.1"
|
||||
|
@ -774,10 +766,10 @@ dependencies = [
|
|||
"crossterm",
|
||||
"fern",
|
||||
"futures",
|
||||
"imap",
|
||||
"lettre",
|
||||
"log",
|
||||
"notify",
|
||||
"panorama-imap",
|
||||
"pin-project",
|
||||
"rustls-connector",
|
||||
"serde",
|
||||
|
@ -791,6 +783,14 @@ dependencies = [
|
|||
"xdg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "panorama-imap"
|
||||
version = "0.12.2"
|
||||
dependencies = [
|
||||
"assert_matches",
|
||||
"nom 6.1.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parking_lot"
|
||||
version = "0.11.1"
|
||||
|
|
|
@ -19,7 +19,7 @@ chrono = "0.4.19"
|
|||
crossterm = "0.19.0"
|
||||
fern = "0.6.0"
|
||||
futures = "0.3.12"
|
||||
imap = { path = "imap" }
|
||||
panorama-imap = { path = "imap" }
|
||||
lettre = "0.9.5"
|
||||
log = "0.4.14"
|
||||
notify = "4.0.15"
|
||||
|
|
|
@ -1,13 +1,10 @@
|
|||
[package]
|
||||
name = "imap"
|
||||
name = "panorama-imap"
|
||||
version = "0.12.2"
|
||||
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
||||
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Michael Zhang <mail@mzhang.io>"]
|
||||
description = "IMAP protocol parser and data structures"
|
||||
documentation = "https://docs.rs/imap-proto"
|
||||
keywords = ["imap", "email"]
|
||||
categories = ["email", "network-programming", "parser-implementations"]
|
||||
homepage = "https://github.com/djc/tokio-imap"
|
||||
repository = "https://github.com/djc/tokio-imap"
|
||||
license = "MIT/Apache-2.0"
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ use futures::{
|
|||
sink::{Sink, SinkExt},
|
||||
stream::{Stream, StreamExt},
|
||||
};
|
||||
use imap::{
|
||||
use panorama_imap::{
|
||||
builders::command::Command,
|
||||
parser::parse_response,
|
||||
types::{Capability, RequestId, Response, ResponseCode, State, Status},
|
||||
|
|
Loading…
Reference in a new issue