summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
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};