Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ include = ["src", "Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "benches",
# Vorbis comments pictures
base64 = "0.21.0"
byteorder = "1.4.3"
# TODO: rustfmt only works with cfg_if for now (https://github.com/rust-lang/rustfmt/issues/3253)
cfg-if = "1.0.0"
# ID3 compressed frames
flate2 = { version = "1.0.25", optional = true }
# Proc macros
Expand Down
14 changes: 0 additions & 14 deletions src/macros.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
// See cfg-if comment in `Cargo.toml`
//
// macro_rules! feature_locked {
// (
// #![cfg($meta:meta)]
// $($item:item)+
// ) => {
// $(
// #[cfg($meta)]
// $item
// )+
// }
// }

macro_rules! try_vec {
($elem:expr; $size:expr) => {{
let mut v = Vec::new();
Expand Down