From 522f8230b9e738707764aed699bafc7c7ca997d0 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Sat, 6 Jul 2019 10:16:28 +1000 Subject: [PATCH 1/2] Upgrade rand to 0.7 --- phf_generator/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index b3b41bc0..c33d2e70 100644 --- a/phf_generator/Cargo.toml +++ b/phf_generator/Cargo.toml @@ -8,5 +8,5 @@ repository = "https://github.com/sfackler/rust-phf" edition = "2018" [dependencies] -rand = "0.6" +rand = { version = "0.7", features = ["small_rng"] } phf_shared = { version = "0.7.24", path = "../phf_shared" } From 9c5822e762485310022908ec207ee7e554ca17fd Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Sat, 6 Jul 2019 20:45:22 +1000 Subject: [PATCH 2/2] Use rust 1.32 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cbd41e71..3e6ed3c7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ version: 2 jobs: stable: docker: - - image: rust:1.31.0-slim + - image: rust:1.32.0-slim environment: RUSTFLAGS: -D warnings steps: