summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2021-06-07 14:06:02 +0200
committerJustus Winter <justus@sequoia-pgp.org>2021-06-07 20:05:09 +0200
commitea6720251f9f5b536ea723075c21fd3b7fcdb6fc (patch)
tree99969d852cd7afc4b71e2c413f1c12041381042c
parentb4734fbe18dbdbb096a7c3f3814f69a432025c8e (diff)
openpgp: Bump version of nettle to 7.0.2.
-rw-r--r--Cargo.lock14
-rw-r--r--openpgp/Cargo.toml6
2 files changed, 3 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1f02d57f..4d020836 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1432,9 +1432,9 @@ dependencies = [
[[package]]
name = "nettle"
-version = "7.0.1"
+version = "7.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ebb1286c10caea570bfd2ae584d7c2c36b961f8ed3a87c215193b45575314138"
+checksum = "2dbaef96ce04e0dafb03b2c5d3803975c84080f876356cb67f44cf85963cedb7"
dependencies = [
"getrandom 0.1.16",
"libc",
@@ -1443,22 +1443,12 @@ dependencies = [
]
[[package]]
-name = "nettle-src"
-version = "3.5.1-2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fad3c0d4be23880e92170c10f009f1d4b0dd842a523dd8b35c89738fd3b640c8"
-dependencies = [
- "cc",
-]
-
-[[package]]
name = "nettle-sys"
version = "2.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "355944b1ac94b95a54a75788d9befba1ad4630189cbd5531ba3385f5c2678edd"
dependencies = [
"bindgen",
- "nettle-src",
"pkg-config",
"vcpkg",
]
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index a520645b..817cd47a 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -37,7 +37,7 @@ lalrpop-util = ">=0.17"
lazy_static = "1.4.0"
libc = "0.2.66"
memsec = { version = ">=0.5", default-features = false }
-nettle = { version = "7", optional = true }
+nettle = { version = "7.0.2", optional = true }
regex = "1"
regex-syntax = "0.6"
sha1collisiondetection = { version = "0.2.3", default-features = false, features = ["std"] }
@@ -75,10 +75,6 @@ compression = ["compression-deflate", "compression-bzip2"]
compression-deflate = ["flate2", "buffered-reader/compression-deflate"]
compression-bzip2 = ["bzip2", "buffered-reader/compression-bzip2"]
-# Vendoring.
-vendored = ["vendored-nettle"]
-vendored-nettle = ["nettle/vendored"]
-
[lib]
bench = false