summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorLibravatar Tanner Rogalsky <tanner@tannerrogalsky.com>2021-11-14 10:53:43 -0500
committerLibravatar Tanner Rogalsky <tanner@tannerrogalsky.com>2021-11-14 10:53:43 -0500
commit4cb3820a4eba06210ca694262b8a220a38f47395 (patch)
tree75d6e657cf318a78b0678f7b6be0d8217e4844fe /native
parentf084ed8df154a7f3b0386cfb7e13307f6a6290d0 (diff)
downloadiced-4cb3820a4eba06210ca694262b8a220a38f47395.tar.gz
iced-4cb3820a4eba06210ca694262b8a220a38f47395.tar.bz2
iced-4cb3820a4eba06210ca694262b8a220a38f47395.zip
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).
Diffstat (limited to 'native')
-rw-r--r--native/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/Cargo.toml b/native/Cargo.toml
index 5de99b2e..b662e6fa 100644
--- a/native/Cargo.toml
+++ b/native/Cargo.toml
@@ -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"