Disable default features in twox-hash dependency.

We don't use twox-hash's random seeding features. Removing them makes
this crate leaner and also more portable (specifically for web).
This commit is contained in:
Tanner Rogalsky 2021-11-14 10:53:43 -05:00
parent f084ed8df1
commit 4cb3820a4e

View file

@ -11,7 +11,7 @@ repository = "https://github.com/hecrj/iced"
debug = []
[dependencies]
twox-hash = "1.5"
twox-hash = { version = "1.5", default-features = false }
unicode-segmentation = "1.6"
num-traits = "0.2"