summaryrefslogtreecommitdiffstats
path: root/openpgp
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-04-03 18:48:10 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-04-03 18:50:45 +0200
commit2a19afb8659e081695ebdc5402e9605dbb50e5af (patch)
treec4ac8f1ef163b766266f816f92379e72de1652e5 /openpgp
parenta9ca727cab50c0c91098a7ef8aea79f5f62a1f5c (diff)
Pin dependencies to keep our MSRV stable.
- Our previous approach of constraining the version using "< 0.1.10" no longer worked, and resulted in two versions of the crate being selected, one of which exceeded our MSRV. - Same for socket2.
Diffstat (limited to 'openpgp')
-rw-r--r--openpgp/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index c63b5ee6..a79ec524 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -37,7 +37,7 @@ quickcheck = { version = "0.9", default-features = false }
rand = { version = "0.7", default-features = false }
regex = "1"
thiserror = "1"
-unicode-normalization = "< 0.1.10"
+unicode-normalization = "= 0.1.9"
[build-dependencies]
lalrpop = "0.17"