From a42ef6631e7d83b4e1387342acca8ff54342fc3f Mon Sep 17 00:00:00 2001 From: Mike Lubinets Date: Tue, 7 May 2019 04:38:44 +0300 Subject: [PATCH] fix(rust): upgrade autorand version end enable the feature that fixes an integer overflow error upon int->float conversion --- templates/rust/static/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/rust/static/Cargo.toml b/templates/rust/static/Cargo.toml index 0e90697c..63bfcded 100644 --- a/templates/rust/static/Cargo.toml +++ b/templates/rust/static/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "template-client" version = "1.0.0" -authors = ["Zachary Belford "] +authors = ["Zachary Belford ", "Mike Lubinets "] edition = "2018" [dependencies] @@ -10,6 +10,6 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" [dev-dependencies] -autorand = { version = "0.2.1", features = ["json", "json-value-always-null"] } +autorand = { version = "0.2.2", features = ["json", "json-value-always-null", "limited-integers"] } futures = "0.1.25" failure = "0.1.5"