Skip to content

Commit

Permalink
fix: disable rsdict simd feature to fix build with nightly 1.78+
Browse files Browse the repository at this point in the history
  • Loading branch information
KonradHoeffner committed Feb 20, 2024
1 parent c08b35d commit 225ff27
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdt"
version = "0.1.7"
version = "0.1.8"
repository = "https://github.com/konradhoeffner/hdt"
authors = ["Tim Baccaert <tbaccaer@vub.be>", "Konrad Höffner"]
license = "MIT"
Expand All @@ -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 <https://github.com/KonradHoeffner/hdt/issues/41>
rsdict = { version = "0.0.7", features = [] }
sophia = { version = "0.8.0", optional = true }
sucds = "0.8"
thiserror = "1"
Expand Down

0 comments on commit 225ff27

Please sign in to comment.