summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2019-08-02 22:52:14 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-10-25 15:47:22 +0200
commit88a9e12fb413b964c45d8a372381786b2d88cad4 (patch)
treee1e1ab31fd7477468809168b86d0ea80fc4e1a26 /net
parent016c14898bfda1c106b8178cee3fb28dc32baacb (diff)
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.
Diffstat (limited to 'net')
-rw-r--r--net/Cargo.toml1
-rw-r--r--net/src/lib.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/net/Cargo.toml b/net/Cargo.toml
index 4a05a4cd..ea3a1ab8 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -24,7 +24,6 @@ maintenance = { status = "actively-developed" }
[dependencies]
sequoia-openpgp = { path = "../openpgp", version = "0.10", default-features = false }
sequoia-core = { path = "../core", version = "0.10" }
-sequoia-rfc2822 = { path = "../rfc2822", version = "0.10" }
failure = "0.1.2"
futures = "0.1"
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;