summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2020-09-18 11:11:59 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2020-09-21 16:32:15 +0200
commit742eac41083f9b96c53809e1fbd58cd434200b12 (patch)
tree6090826c26a8fd8767aa22881264cec684b3c65c
parentf26ded55abba55c0ea88e20cec62a059f6875158 (diff)
openpgp: Unpin unicode-normalization.
-rw-r--r--Cargo.lock12
-rw-r--r--openpgp/Cargo.toml6
2 files changed, 10 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3faf232b..c8ff5806 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2486,6 +2486,12 @@ dependencies = [
]
[[package]]
+name = "tinyvec"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117"
+
+[[package]]
name = "tokio"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2733,11 +2739,11 @@ dependencies = [
[[package]]
name = "unicode-normalization"
-version = "0.1.9"
+version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "09c8070a9942f5e7cfccd93f490fdebd230ee3c3c9f107cb25bad5351ef671cf"
+checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
dependencies = [
- "smallvec 0.6.13",
+ "tinyvec",
]
[[package]]
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index f66521dc..de7cc99c 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -42,12 +42,8 @@ quickcheck = { version = "0.9", default-features = false, optional = true }
rand = { version = "0.7", default-features = false, optional = true }
regex = "1"
thiserror = "1"
-
-# XXX: We need to pin some dependencies to keep our MSRV at 1.34. If
-# you are packaging Sequoia, feel free to drop these pins if your
-# compiler is newer.
backtrace = "0.3.46"
-unicode-normalization = "= 0.1.9"
+unicode-normalization = "0.1.9"
[target.'cfg(windows)'.dependencies]
win-crypto-ng = { version = "0.2", features = ["rand"], optional = true }