-
Notifications
You must be signed in to change notification settings - Fork 47
/
Cargo.toml
32 lines (27 loc) · 881 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
30
31
32
[package]
name = "id3"
version = "1.14.0"
edition = "2021"
authors = [
"polyfloyd <[email protected]>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/polyfloyd/rust-id3"
description = "A library for reading and writing ID3 metadata"
keywords = ["id3", "mp3", "wav", "aiff", "metadata"]
categories = ["encoding", "multimedia", "multimedia::audio", "parser-implementations",]
include = ["src/*", "Cargo.toml", "LICENSE", "README.md"]
[dependencies]
bitflags = "2.0"
byteorder = "1.4"
flate2 = "1"
tokio = { version = "1.21", default-features = false, features = ["rt", "macros", "io-util", "fs"], optional = true}
[dev-dependencies]
tempfile = "3"
[features]
default = ["decode_picture"]
## Support parsing ID3 tags with Tokio
tokio = ["dep:tokio"]
## Picture decoding takes ~20% of time. Allow disabling it if it's unneeded.
decode_picture = []