Skip to content
This repository was archived by the owner on Jan 9, 2021. It is now read-only.

Commit b6a8166

Browse files
dkgteythoon
authored andcommitted
openpgp: Relax unicode-normalization dependency.
- The dependency for unicode-normalization was introduced in f07a1f4, with the goal (I think) of keeping a low MSRV. In #413, @nwalfield pointed me to unicode-rs/unicode-normalization#50, with more background. This cleanup is by analogy with the cleanup in !535 -- we are trying to avoid a higher dependency, but there is no reason to pin to a specific version; our transitive dependencies can take care of setting the lower bound on the version. Signed-off-by: Daniel Kahn Gillmor <[email protected]>
1 parent 4bf1e01 commit b6a8166

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openpgp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ nettle = "6.0.1"
3535
quickcheck = { version = "0.9", default-features = false }
3636
rand = { version = "0.7", default-features = false }
3737
regex = "1"
38-
unicode-normalization = "=0.1.9"
38+
unicode-normalization = "< 0.1.10"
3939

4040
[build-dependencies]
4141
lalrpop = "0.17"

0 commit comments

Comments
 (0)