Use bendy dep from crates.io instead of GitHub

type: distribution
This commit is contained in:
Casey Rodarmor 2020-03-13 15:46:32 -07:00
parent 1daa18ef9a
commit f1cc12858c
No known key found for this signature in database
GPG Key ID: 556186B153EC6FE0
2 changed files with 4 additions and 5 deletions

5
Cargo.lock generated
View File

@ -77,8 +77,9 @@ dependencies = [
[[package]] [[package]]
name = "bendy" name = "bendy"
version = "0.2.2" version = "0.3.0"
source = "git+https://github.com/casey/bendy.git?branch=serde#5b20df5036bbf2dbb32d60b2b1181bc647ffbf49" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da59940cb55c84298eeea8fc29659abe7af365b137c64d35d5db60ad1ad48a86"
dependencies = [ dependencies = [
"failure", "failure",
"serde", "serde",

View File

@ -37,9 +37,7 @@ walkdir = "2.1.0"
lazy_static = "1.4.0" lazy_static = "1.4.0"
[dependencies.bendy] [dependencies.bendy]
version = "0.2.2" version = "0.3.0"
git = "https://github.com/casey/bendy.git"
branch = "serde"
features = ["serde"] features = ["serde"]
[dependencies.indicatif] [dependencies.indicatif]