summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-11-24 12:24:31 +0100
committerJustus Winter <justus@sequoia-pgp.org>2018-11-24 12:54:04 +0100
commit00379cb1cb9d0b38cdb7b50e5471b45b1ebecd23 (patch)
tree96e9eeb3257fcff8fe4d972eb5f9d3ed096160ad /examples
parent552350974b008e5de4b92a2c063927066f213df1 (diff)
Rename the openpgp crate to sequoia-openpgp.
Diffstat (limited to 'examples')
-rw-r--r--examples/guide-exploring-openpgp.rs2
-rw-r--r--examples/guide-getting-started.rs2
-rw-r--r--examples/guide-the-keystore.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/guide-exploring-openpgp.rs b/examples/guide-exploring-openpgp.rs
index 87763aee..88d4559d 100644
--- a/examples/guide-exploring-openpgp.rs
+++ b/examples/guide-exploring-openpgp.rs
@@ -1,7 +1,7 @@
//! https://sequoia-pgp.org/guide/exploring-openpgp/
#[macro_use] // For armored!
-extern crate openpgp;
+extern crate sequoia_openpgp as openpgp;
fn main() {
let mut reader = armored!(
diff --git a/examples/guide-getting-started.rs b/examples/guide-getting-started.rs
index 9efff752..940f9032 100644
--- a/examples/guide-getting-started.rs
+++ b/examples/guide-getting-started.rs
@@ -1,7 +1,7 @@
//! https://sequoia-pgp.org/guide/getting-started/
#[macro_use] // For armored!
-extern crate openpgp;
+extern crate sequoia_openpgp as openpgp;
use std::io;
fn main() {
diff --git a/examples/guide-the-keystore.rs b/examples/guide-the-keystore.rs
index c5c6f361..8ede6ac9 100644
--- a/examples/guide-the-keystore.rs
+++ b/examples/guide-the-keystore.rs
@@ -1,7 +1,7 @@
//! https://sequoia-pgp.org/guide/the-keystore/
#[macro_use] // For armored!
-extern crate openpgp;
+extern crate sequoia_openpgp as openpgp;
extern crate sequoia;
use sequoia::{core, store};