Use rust-id3 v0.3.0

This commit is contained in:
Andrew Radev 2019-02-24 17:21:10 +02:00
parent bbdab3ca27
commit 10fc95d1e2
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View File

@ -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)" = "<none>"
"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"

View File

@ -5,7 +5,7 @@ authors = ["Andrew Radev <andrey.radev@gmail.com>"]
edition = "2018"
[dependencies]
id3 = { git = "https://github.com/jameshurst/rust-id3" }
id3 = "0.3.0"
image = "0.21.0"
structopt = "0.2.14"