From 4b28c9cad10e3e2580cec8d9b73a01adac23d4c1 Mon Sep 17 00:00:00 2001 From: Matt Bilker Date: Wed, 23 Jan 2019 19:04:04 +0000 Subject: [PATCH] cargo: version 0.21.0 - Disable simd for encodings_rs as it is broken with Rust nightly --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 754d447..7a40013 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kbinxml" -version = "0.20.0" +version = "0.21.0" authors = ["Matt Bilker "] description = "An encoder/decoder for Konami's binary XML format used in many of their games." edition = "2018" @@ -9,7 +9,7 @@ edition = "2018" byteorder = "1.2.3" bytes = "0.4.10" cfg-if = "0.1" -encoding_rs = { version = "0.8.6", features = ["simd-accel"] } +encoding_rs = "0.8.6" failure = "0.1.1" indexmap = "1.0.1" lazy_static = "1.0.0"