IronCoreLabs / ironoxide

Rust SDK for IronCore Privacy Platform
https://docs.rs/ironoxide
GNU Affero General Public License v3.0
10 stars 3 forks source link

publicsuffix can be dropped #231

Closed rushmorem closed 3 years ago

rushmorem commented 3 years ago

It seems like this crate is only using publicsuffix to take advantage of publicsuffix::IntoUrl trait. This trait is no longer available in v2 of the crate. You can use url::Url::parse instead and drop publicsuffix entirely.

clintfred commented 3 years ago

@rushmorem Thanks for the heads up. Direct usage of url works great.

rushmorem commented 3 years ago

You are welcome :)