sbstp / rust-igd

Internet Gateway Device (UPNP) client
https://docs.rs/igd/
MIT License
105 stars 41 forks source link

Remove deprecated description methods #50

Closed FloGa closed 4 years ago

FloGa commented 4 years ago

As of Rust 1.42.0, the description method is deprecated. Instead, the Display trait should be properly implemented (which is the case here), so the description of the Error can be printed directly.

sbstp commented 4 years ago

Thanks