From 221ebbf5e6f43d9573f75199733c38f35a8187bf Mon Sep 17 00:00:00 2001 From: koushiro Date: Thu, 16 Jan 2020 12:22:41 +0800 Subject: [PATCH] Update outdated dependencies Signed-off-by: koushiro --- README.md | 1 + conformance/Cargo.toml | 2 +- prost-build/Cargo.toml | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a3340c731..28d8a5f76 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [![Windows Build Status](https://ci.appveyor.com/api/projects/status/24rpba3x2vqe8lje/branch/master?svg=true)](https://ci.appveyor.com/project/danburkert/prost/branch/master) [![Documentation](https://docs.rs/prost/badge.svg)](https://docs.rs/prost/) [![Crate](https://img.shields.io/crates/v/prost.svg)](https://crates.io/crates/prost) +[![Dependency Status](https://deps.rs/repo/github/danburkert/prost/status.svg)](https://deps.rs/repo/github/danburkert/prost) # *PROST!* diff --git a/conformance/Cargo.toml b/conformance/Cargo.toml index cf5703519..7783eb5c5 100644 --- a/conformance/Cargo.toml +++ b/conformance/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] bytes = "0.5" env_logger = { version = "0.7", default-features = false } -log = "0.3" +log = "0.4" prost = { path = ".." } protobuf = { path = "../protobuf" } tests = { path = "../tests" } diff --git a/prost-build/Cargo.toml b/prost-build/Cargo.toml index 7122ccc97..b69774a77 100644 --- a/prost-build/Cargo.toml +++ b/prost-build/Cargo.toml @@ -14,14 +14,14 @@ bytes = "0.5" heck = "0.3" itertools = "0.8" log = "0.4" -multimap = { version = "0.4", default-features = false } -petgraph = { version = "0.4", default-features = false } +multimap = { version = "0.8", default-features = false } +petgraph = { version = "0.5", default-features = false } prost = { version = "0.6.0", path = ".." } prost-types = { version = "0.6.0", path = "../prost-types" } tempfile = "3" [build-dependencies] -which = "2" +which = { version = "3", default-features = false } [dev-dependencies] env_logger = { version = "0.7", default-features = false }