danielpclark / rutie

“The Tie Between Ruby and Rust.”
MIT License
940 stars 62 forks source link

Fix build warnings from bare trait objects #103

Closed danlarkin closed 5 years ago

danlarkin commented 5 years ago

The warning is "trait objects without an explicit dyn are deprecated" and is easily fixed: https://doc.rust-lang.org/edition-guide/rust-2018/trait-system/dyn-trait-for-trait-objects.html

danielpclark commented 5 years ago

Thank you.