From 4cb3820a4eba06210ca694262b8a220a38f47395 Mon Sep 17 00:00:00 2001 From: Tanner Rogalsky Date: Sun, 14 Nov 2021 10:53:43 -0500 Subject: 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). --- native/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'native') 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" -- cgit