From e0b8efd42de08a01030731c7b2f76e6f341036a8 Mon Sep 17 00:00:00 2001 From: Juan Alvarez Date: Thu, 21 Nov 2019 13:04:37 -0600 Subject: [PATCH] do not depend on difference versions of rand --- tonic-examples/Cargo.toml | 2 +- tonic/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tonic-examples/Cargo.toml b/tonic-examples/Cargo.toml index 43835e67b..95f5ade5a 100644 --- a/tonic-examples/Cargo.toml +++ b/tonic-examples/Cargo.toml @@ -80,7 +80,7 @@ tower = { git = "https://github.com/tower-rs/tower" } # Required for routeguide serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -rand = "0.7.2" +rand = "0.6" # Required for wellknown types prost-types = "0.5" diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index 3ead36806..11db22a97 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -76,7 +76,7 @@ rustls-native-certs = { version = "0.1", optional = true } [dev-dependencies] tokio = { version = "0.2", features = ["rt-core", "macros"] } static_assertions = "1.0" -rand = "0.7.2" +rand = "0.6" criterion = "0.3" [package.metadata.docs.rs]