althonos / packageurl.rs

Rust implementation of the Package URL specification.
MIT License
8 stars 6 forks source link

impl Display instead of ToString #4

Closed TedDriggs closed 3 years ago

TedDriggs commented 3 years ago

This allows formatting with "{}", and use with serde::Serializer::collect_str. There is a blanket impl<T: Display> ToString for T, so this doesn't break previous behavior.

Fixes #2