summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--ffi/Cargo.toml1
-rw-r--r--ffi/src/lib.rs1
-rw-r--r--ffi/tests/c-tests.rs1
-rw-r--r--openpgp-ffi/Cargo.toml1
-rw-r--r--openpgp-ffi/src/lib.rs1
-rw-r--r--openpgp-ffi/tests/c-tests.rs1
7 files changed, 0 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index eb8d899d..fd86481d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1573,7 +1573,6 @@ dependencies = [
"libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
"memsec 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
"native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "nettle 5.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
"sequoia-core 0.12.0",
"sequoia-ffi-macros 0.12.0",
"sequoia-net 0.12.0",
@@ -1676,7 +1675,6 @@ dependencies = [
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
"memsec 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
- "nettle 5.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
"sequoia-ffi-macros 0.12.0",
"sequoia-openpgp 0.12.0",
]
diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml
index eb9313a0..563fc06e 100644
--- a/ffi/Cargo.toml
+++ b/ffi/Cargo.toml
@@ -32,7 +32,6 @@ lazy_static = "1.0.0"
libc = "0.2.33"
memsec = "0.5.6"
native-tls = "0.2.0"
-nettle = "5.0"
tokio-core = "0.1"
[dev-dependencies]
diff --git a/ffi/src/lib.rs b/ffi/src/lib.rs
index 0bf46056..2d081c3e 100644
--- a/ffi/src/lib.rs
+++ b/ffi/src/lib.rs
@@ -113,7 +113,6 @@ extern crate lazy_static;
extern crate libc;
extern crate native_tls;
extern crate memsec;
-extern crate nettle;
extern crate sequoia_ffi_macros;
use sequoia_ffi_macros::{
diff --git a/ffi/tests/c-tests.rs b/ffi/tests/c-tests.rs
index ff613bad..96740716 100644
--- a/ffi/tests/c-tests.rs
+++ b/ffi/tests/c-tests.rs
@@ -1,7 +1,6 @@
extern crate failure;
use failure::{Fallible as Result, ResultExt};
extern crate filetime;
-extern crate nettle;
use std::cmp::min;
use std::env::{self, var_os};
diff --git a/openpgp-ffi/Cargo.toml b/openpgp-ffi/Cargo.toml
index 6d62fa09..26e11068 100644
--- a/openpgp-ffi/Cargo.toml
+++ b/openpgp-ffi/Cargo.toml
@@ -28,7 +28,6 @@ failure = "0.1.2"
lazy_static = "1.0.0"
libc = "0.2.33"
memsec = "0.5.6"
-nettle = "5.0"
[dev-dependencies]
filetime = "0.2"
diff --git a/openpgp-ffi/src/lib.rs b/openpgp-ffi/src/lib.rs
index 9f9b0b62..1ec4ad50 100644
--- a/openpgp-ffi/src/lib.rs
+++ b/openpgp-ffi/src/lib.rs
@@ -320,7 +320,6 @@ extern crate failure;
extern crate lazy_static;
extern crate libc;
extern crate memsec;
-extern crate nettle;
extern crate sequoia_ffi_macros;
use sequoia_ffi_macros::{
diff --git a/openpgp-ffi/tests/c-tests.rs b/openpgp-ffi/tests/c-tests.rs
index ea22e226..d82b22ca 100644
--- a/openpgp-ffi/tests/c-tests.rs
+++ b/openpgp-ffi/tests/c-tests.rs
@@ -1,7 +1,6 @@
extern crate failure;
use failure::{Fallible as Result, ResultExt};
extern crate filetime;
-extern crate nettle;
use std::cmp::min;
use std::env::{self, var_os};