url: use Display rather than Error's description in deserialize
Error's description method has been deprecated since 1.42.0. When
deserializing URLs, errors show a Rust-specific programming error
message rather than information about what failed, ie:
"invalid value: string "a string", expected description() is deprecated;
use Display"
This patch uses Display on the returned error.
Signed-off-by: Alejandro Martinez Ruiz <amr@redhat.com>