From c296dd7731bb256f336835fdd8a10c8c98af00e4 Mon Sep 17 00:00:00 2001 From: "hakon.lerring" Date: Thu, 31 Aug 2023 15:22:44 +0200 Subject: [PATCH] Remove simd since it's not supported in stable rust Signed-off-by: Vegard Berg --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fef336b..19d194b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,5 +23,5 @@ owo-colors = { version = "3.5.0", features = ["supports-colors"] } serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" strum = { version = "0.24.1", features = ["derive"] } -tl = { version = "0.7.7", features = ["simd"] } +tl = { version = "0.7.7" } ureq = "2.6.2"