Rename to panorama imap

This commit is contained in:
Michael Zhang 2021-02-14 06:30:53 -06:00
parent a36f541429
commit 983836c439
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
4 changed files with 13 additions and 16 deletions

18
Cargo.lock generated
View file

@ -421,14 +421,6 @@ dependencies = [
"winutil", "winutil",
] ]
[[package]]
name = "imap"
version = "0.12.2"
dependencies = [
"assert_matches",
"nom 6.1.0",
]
[[package]] [[package]]
name = "inotify" name = "inotify"
version = "0.7.1" version = "0.7.1"
@ -774,10 +766,10 @@ dependencies = [
"crossterm", "crossterm",
"fern", "fern",
"futures", "futures",
"imap",
"lettre", "lettre",
"log", "log",
"notify", "notify",
"panorama-imap",
"pin-project", "pin-project",
"rustls-connector", "rustls-connector",
"serde", "serde",
@ -791,6 +783,14 @@ dependencies = [
"xdg", "xdg",
] ]
[[package]]
name = "panorama-imap"
version = "0.12.2"
dependencies = [
"assert_matches",
"nom 6.1.0",
]
[[package]] [[package]]
name = "parking_lot" name = "parking_lot"
version = "0.11.1" version = "0.11.1"

View file

@ -19,7 +19,7 @@ chrono = "0.4.19"
crossterm = "0.19.0" crossterm = "0.19.0"
fern = "0.6.0" fern = "0.6.0"
futures = "0.3.12" futures = "0.3.12"
imap = { path = "imap" } panorama-imap = { path = "imap" }
lettre = "0.9.5" lettre = "0.9.5"
log = "0.4.14" log = "0.4.14"
notify = "4.0.15" notify = "4.0.15"

View file

@ -1,13 +1,10 @@
[package] [package]
name = "imap" name = "panorama-imap"
version = "0.12.2" 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" description = "IMAP protocol parser and data structures"
documentation = "https://docs.rs/imap-proto"
keywords = ["imap", "email"] keywords = ["imap", "email"]
categories = ["email", "network-programming", "parser-implementations"] 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" license = "MIT/Apache-2.0"
edition = "2018" edition = "2018"

View file

@ -11,7 +11,7 @@ use futures::{
sink::{Sink, SinkExt}, sink::{Sink, SinkExt},
stream::{Stream, StreamExt}, stream::{Stream, StreamExt},
}; };
use imap::{ use panorama_imap::{
builders::command::Command, builders::command::Command,
parser::parse_response, parser::parse_response,
types::{Capability, RequestId, Response, ResponseCode, State, Status}, types::{Capability, RequestId, Response, ResponseCode, State, Status},