mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 06:34:18 +00:00
misc: Update deps
This commit is contained in:
parent
d1183c3ff7
commit
2f3f604103
1 changed files with 5 additions and 5 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -13,30 +13,30 @@ include = ["src", "Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "benches",
|
|||
|
||||
[dependencies]
|
||||
# Vorbis comments pictures
|
||||
base64 = "0.21.0"
|
||||
base64 = "0.21.2"
|
||||
byteorder = "1.4.3"
|
||||
# ID3 compressed frames
|
||||
flate2 = { version = "1.0.26", optional = true }
|
||||
# Proc macros
|
||||
lofty_attr = "0.8.0"
|
||||
# Debug logging
|
||||
log = "0.4.17"
|
||||
log = "0.4.18"
|
||||
# OGG Vorbis/Opus
|
||||
ogg_pager = "0.5.0"
|
||||
# Key maps
|
||||
once_cell = "1.17.1"
|
||||
once_cell = "1.18.0"
|
||||
paste = "1.0.12"
|
||||
|
||||
[features]
|
||||
default = ["id3v2_compression_support"]
|
||||
id3v2_compression_support = ["flate2"]
|
||||
id3v2_compression_support = ["dep:flate2"]
|
||||
|
||||
[dev-dependencies]
|
||||
# WAV properties validity tests
|
||||
hound = { git = "https://github.com/ruuda/hound.git", rev = "02e66effb33683dd6acb92df792683ee46ad6a59" }
|
||||
# tag_writer example
|
||||
structopt = { version = "0.3.26", default-features = false }
|
||||
tempfile = "3.5.0"
|
||||
tempfile = "3.6.0"
|
||||
|
||||
# Pretty heavy dependency, we don't want this compiling for test/doc runs
|
||||
[target.'cfg(bench)'.dev-dependencies]
|
||||
|
|
Loading…
Reference in a new issue