From 10fc95d1e2e879b913b63e11e11c5cb3d056b25f Mon Sep 17 00:00:00 2001 From: Andrew Radev Date: Sun, 24 Feb 2019 17:21:10 +0200 Subject: [PATCH] Use rust-id3 v0.3.0 --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 067f2fe..28aa932 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,8 +306,8 @@ dependencies = [ [[package]] name = "id3" -version = "0.2.5" -source = "git+https://github.com/jameshurst/rust-id3#a40543abe908d305c0e2e77fc34d2f9a16d0c4cc" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -322,7 +322,7 @@ dependencies = [ name = "id3-image" version = "0.1.0" dependencies = [ - "id3 0.2.5 (git+https://github.com/jameshurst/rust-id3)", + "id3 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -881,7 +881,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum gif 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4bca55ac1f213920ce3527ccd62386f1f15fa3f1714aeee1cf93f2c416903f" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" -"checksum id3 0.2.5 (git+https://github.com/jameshurst/rust-id3)" = "" +"checksum id3 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96cbe2d2d42930674ef20d3f02026641d0fd62d97b2a173cc2406cedbebc069e" "checksum ident_case 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c9826188e666f2ed92071d2dadef6edc430b11b158b5b2b3f4babbcc891eaaa" "checksum image 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)" = "52fb0666a1273dac46f9725aa4859bcd5595fc3554cf3495051b4de8db745e7d" "checksum inflate 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "84c683bde2d8413b8f1be3e459c30e4817672b6e7a31d9212b0323154e76eba7" diff --git a/Cargo.toml b/Cargo.toml index fd12416..a1e621d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Andrew Radev "] edition = "2018" [dependencies] -id3 = { git = "https://github.com/jameshurst/rust-id3" } +id3 = "0.3.0" image = "0.21.0" structopt = "0.2.14"