From 65f87aefd45eb7283d83caa7b435ef79519637da Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 16 Feb 2019 11:33:28 -0800 Subject: [PATCH] Bump byteorder requirement to 1.3.0 1.3.0 is the first version that performs auto detection of i128 support, which we rely on. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ccc7117..620624c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ license = "MIT" description = "A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!" [dependencies] -byteorder = "1.2.0" +byteorder = "1.3.0" serde = "1.0.63" [dev-dependencies]