forked from TianyiShi2001/audiotags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (24 loc) · 997 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "audiotags"
version = "0.5.0"
authors = ["Tianyi <ShiTianyi2001@outlook.com>", "Pierre de la Martinière <pierre.de.la.martiniere@gmail.com>"]
edition = "2021"
description = "Unified IO for different types of audio metadata"
license = "MIT"
repository = "https://github.com/TianyiShi2001/audiotags"
keywords = ["id3", "tag", "tags", "audio", "audiotags"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
id3 = { git = "https://github.com/vauradkar/rust-id3.git", features = ["serde"] }
mp4ameta = { git = "https://github.com/vauradkar/mp4ameta.git", features = ["serde"] }
metaflac = { git = "https://github.com/vauradkar/rust-metaflac.git", features = ["serde"] }
thiserror = "1.0.50"
audiotags-macro = { version = "0.2", path = "./audiotags-macro" }
paste = { version = "1.0.15" }
[dev-dependencies]
tempfile = "3.8.1"
[build-dependencies]
readme-rustdocifier = "0.1.1"
[features]
default = ['from']
from = []