postgres version doesn't conflict with rand (#550)

This commit is contained in:
Andrew Gauger 2019-09-19 15:45:49 -07:00 committed by GitHub
parent 5eba1a6068
commit ad5f968c89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -34,6 +34,7 @@ num = "0.2"
num_cpus = "1.8"
percent-encoding = "2.1"
petgraph = "0.4"
postgres = "0.15"
rand = "0.6"
rayon = "1.0"
regex = "1.0"

View file

@ -26,7 +26,7 @@ use tempfile::Builder;
# }
# }
fn run() -> Result<()> {
fn main() -> Result<()> {
let tmp_dir = Builder::new().prefix("example").tempdir()?;
let target = "https://www.rust-lang.org/logos/rust-logo-512x512.png";
let mut response = reqwest::get(target)?;