From 225ff272506c1283c30d37f825bf2e043326dfb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20H=C3=B6ffner?= Date: Tue, 20 Feb 2024 12:00:16 +0100 Subject: [PATCH] fix: disable rsdict simd feature to fix build with nightly 1.78+ --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8d650c5..55df479 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdt" -version = "0.1.7" +version = "0.1.8" repository = "https://github.com/konradhoeffner/hdt" authors = ["Tim Baccaert ", "Konrad Höffner"] license = "MIT" @@ -18,7 +18,8 @@ crc = "3" iref = "3" langtag = "0.3" ntriple = "0.1" -rsdict = { version = "0.0.7", features = ["simd"] } +# rsdict "simd" feature does not build with nightly 1.78, see +rsdict = { version = "0.0.7", features = [] } sophia = { version = "0.8.0", optional = true } sucds = "0.8" thiserror = "1"