2019-01-26 02:54:44 +00:00
|
|
|
[package]
|
|
|
|
name = "id3-image"
|
2020-10-17 10:37:35 +00:00
|
|
|
version = "0.1.4"
|
2019-01-26 02:54:44 +00:00
|
|
|
authors = ["Andrew Radev <andrey.radev@gmail.com>"]
|
|
|
|
edition = "2018"
|
2019-02-24 15:29:58 +00:00
|
|
|
description = "A tool to embed images into mp3 files"
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/AndrewRadev/id3-image"
|
2019-02-24 15:47:44 +00:00
|
|
|
documentation = "https://docs.rs/id3-image/latest/id3_image"
|
2019-02-24 15:29:58 +00:00
|
|
|
keywords = [ "id3", "mp3", "images" ]
|
|
|
|
categories = [ "command-line-utilities", "filesystem", "multimedia" ]
|
2019-01-26 02:54:44 +00:00
|
|
|
|
2019-03-16 09:33:44 +00:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "AndrewRadev/id3-image" }
|
|
|
|
|
2019-01-26 02:54:44 +00:00
|
|
|
[dependencies]
|
2020-08-31 14:22:32 +00:00
|
|
|
id3 = "0.5"
|
|
|
|
image = "0.23"
|
|
|
|
structopt = { version = "0.3", default-features = false }
|
2019-02-17 19:55:04 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-08-31 14:22:32 +00:00
|
|
|
tempfile = "3.1"
|