RustAudio / rimd

Library for handling Midi and Standard Midi Files in Rust
MIT License
80 stars 17 forks source link

Use the `dyn` keyword instead of bare trait objects. #14

Closed PieterPenninckx closed 5 years ago

PieterPenninckx commented 5 years ago

Use the dyn keyword introduced with Rust 1.27.0 (2018-06-21). Bare trait objects give a warning starting with Rust 1.37.0.

PieterPenninckx commented 5 years ago

It looks like this has already been covered by pull request #12, which has been merged, so this is no longer needed.