From f1cc12858cee387d27c63b6cec101a16af44b62f Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Fri, 13 Mar 2020 15:46:32 -0700 Subject: [PATCH] Use bendy dep from crates.io instead of GitHub type: distribution --- Cargo.lock | 5 +++-- Cargo.toml | 4 +--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9305395..5a66b77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -77,8 +77,9 @@ dependencies = [ [[package]] name = "bendy" -version = "0.2.2" -source = "git+https://github.com/casey/bendy.git?branch=serde#5b20df5036bbf2dbb32d60b2b1181bc647ffbf49" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da59940cb55c84298eeea8fc29659abe7af365b137c64d35d5db60ad1ad48a86" dependencies = [ "failure", "serde", diff --git a/Cargo.toml b/Cargo.toml index 825ac2d..d0cdfdc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,9 +37,7 @@ walkdir = "2.1.0" lazy_static = "1.4.0" [dependencies.bendy] -version = "0.2.2" -git = "https://github.com/casey/bendy.git" -branch = "serde" +version = "0.3.0" features = ["serde"] [dependencies.indicatif]