Skip to content

Commit 8df3c01

Browse files
committed
Misc: Make Cargo.toml nicer to look at
1 parent 6562166 commit 8df3c01

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

Cargo.toml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
11
[package]
2-
name = "lofty"
3-
version = "0.8.1"
4-
authors = ["Serial <[email protected]>"]
5-
edition = "2021"
6-
license = "MIT OR Apache-2.0"
2+
name = "lofty"
3+
version = "0.8.1"
4+
authors = ["Serial <[email protected]>"]
5+
edition = "2021"
6+
license = "MIT OR Apache-2.0"
77
description = "Audio metadata library"
8-
repository = "https://github.com/Serial-ATA/lofty-rs"
9-
keywords = ["tags", "audio", "metadata", "id3", "vorbis"]
10-
categories = ["accessibility", "multimedia::audio"]
11-
readme = "README.md"
12-
include = ["src", "Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "benches"]
8+
repository = "https://github.com/Serial-ATA/lofty-rs"
9+
keywords = ["tags", "audio", "metadata", "id3", "vorbis"]
10+
categories = ["accessibility", "multimedia::audio"]
11+
readme = "README.md"
12+
include = ["src", "Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "benches"]
1313

1414
[dependencies]
1515
# Vorbis comments pictures
16-
base64 = { version = "0.13.0", optional = true }
17-
byteorder = "1.4.3"
16+
base64 = { version = "0.13.0", optional = true }
17+
byteorder = "1.4.3"
1818
# TODO: rustfmt only works with cfg_if for now (https://github.com/rust-lang/rustfmt/issues/3253)
19-
cfg-if = "1.0.0"
19+
cfg-if = "1.0.0"
2020
# ID3 compressed frames
21-
flate2 = { version = "1.0.24", optional = true }
21+
flate2 = { version = "1.0.24", optional = true }
2222
# Proc macros
2323
lofty_attr = { path = "lofty_attr" }
2424
# Debug logging
25-
log = "0.4.17"
25+
log = "0.4.17"
2626
# OGG Vorbis/Opus
27-
ogg_pager = "0.3.2"
27+
ogg_pager = "0.3.2"
2828
# Key maps
29-
once_cell = "1.13.0"
30-
paste = "1.0.7"
29+
once_cell = "1.13.0"
30+
paste = "1.0.7"
3131

3232
[features]
33-
default = ["mp4_ilst", "vorbis_comments", "ape", "id3v1", "id3v2", "aiff_text_chunks", "riff_info_list"]
34-
mp4_ilst = []
35-
vorbis_comments = ["base64"]
36-
ape = []
37-
id3v1 = []
38-
id3v2 = ["flate2"]
33+
default = ["mp4_ilst", "vorbis_comments", "ape", "id3v1", "id3v2", "aiff_text_chunks", "riff_info_list"]
34+
mp4_ilst = []
35+
vorbis_comments = ["base64"]
36+
ape = []
37+
id3v1 = []
38+
id3v2 = ["flate2"]
3939
id3v2_restrictions = []
40-
aiff_text_chunks = []
41-
riff_info_list = []
40+
aiff_text_chunks = []
41+
riff_info_list = []
4242

4343
[dev-dependencies]
4444
# WAV properties validity tests
45-
hound = { git = "https://github.com/ruuda/hound.git", rev = "02e66effb33683dd6acb92df792683ee46ad6a59" }
45+
hound = { git = "https://github.com/ruuda/hound.git", rev = "02e66effb33683dd6acb92df792683ee46ad6a59" }
4646
# tag_writer example
4747
structopt = { version = "0.3.26", default-features = false }
48-
tempfile = "3.3.0"
48+
tempfile = "3.3.0"
4949

5050
# Pretty heavy dependency, we don't want this compiling for test/doc runs
5151
[target.'cfg(bench)'.dev-dependencies]
@@ -55,11 +55,11 @@ criterion = { version = "0.4.0", features = ["html_reports"] }
5555
bench = false
5656

5757
[[bench]]
58-
name = "read_file"
58+
name = "read_file"
5959
harness = false
6060

6161
[[bench]]
62-
name = "create_tag"
62+
name = "create_tag"
6363
harness = false
6464

6565
[[example]]

0 commit comments

Comments
 (0)