From 15a237520ee2bf6cd4c4781105bcdff3cebc3a3e Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sat, 22 Sep 2018 20:59:54 -0700 Subject: [PATCH] Depend on scroll 0.9.0 to fix Rust 1.25 compatibility. --- lib/faerie/Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/faerie/Cargo.toml b/lib/faerie/Cargo.toml index b19c5c1775..9d57533e20 100644 --- a/lib/faerie/Cargo.toml +++ b/lib/faerie/Cargo.toml @@ -16,6 +16,12 @@ goblin = "0.0.17" failure = "0.1.2" target-lexicon = "0.0.3" +# Temporarily depend on 0.9.0 since 0.9.1 uses i128 which isn't +# supported in Rust 1.25.0. And scroll 0.9.0 doesn't work with +# scroll_derive 0.9.5. See https://github.com/m4b/scroll/issues/40 . +scroll = { version = "=0.9.0", default-features = false } +scroll_derive = { version = "=0.9.4", default-features = false } + [badges] maintenance = { status = "experimental" } travis-ci = { repository = "CraneStation/cranelift" }