From 88a9e12fb413b964c45d8a372381786b2d88cad4 Mon Sep 17 00:00:00 2001 From: "Neal H. Walfield" Date: Fri, 2 Aug 2019 22:52:14 +0200 Subject: rfc2822,openpgp: Move rfc2822 crate to be a private mod in openpgp - The rfc2822 crate doesn't implement all of RFC 2822. Moreover, it includes a number of extensions. This makes rfc2822 a misnomer. - RFC 2822 is actually obsoleted by RFC 5322. This means that if we ever add support for RFC 5322, it will be an even worse misnomer. - Move the whole crate into the openpgp crate. Note: we don't directly export the API; it is only used internally by packet::userid. - Closes #279. --- net/src/lib.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'net/src') diff --git a/net/src/lib.rs b/net/src/lib.rs index 6b1b10b9..8a37ccc5 100644 --- a/net/src/lib.rs +++ b/net/src/lib.rs @@ -37,7 +37,6 @@ extern crate sequoia_openpgp as openpgp; extern crate sequoia_core; -extern crate sequoia_rfc2822 as rfc2822; #[macro_use] extern crate failure; -- cgit v1.2.3