id3-image-rs/Cargo.toml

20 lines
474 B
TOML
Raw Normal View History

2019-01-26 02:54:44 +00:00
[package]
name = "id3-image"
version = "0.1.0"
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"
keywords = [ "id3", "mp3", "images" ]
categories = [ "command-line-utilities", "filesystem", "multimedia" ]
2019-01-26 02:54:44 +00:00
[dependencies]
2019-02-24 15:21:10 +00:00
id3 = "0.3.0"
2019-01-26 02:54:44 +00:00
image = "0.21.0"
2019-02-24 09:23:50 +00:00
structopt = "0.2.14"
[dev-dependencies]
tempfile = "*"