This crate will eventually supersede the publicsuffix
crate.
Add this crate to your Cargo.toml
:
toml
[dependencies]
psl = "0.1"
```rust extern crate psl;
use psl::{Psl, List};
let list = List::new();
let suffix = list.public_suffix("example.com")?;
let domain = list.registrable_domain("example.com")?; ```
For those who work with domain names the use cases of this library are plenty. publicsuffix.org/learn lists quite a few. For the sake of brevity, I'm not going to repeat them here. I work for a domain registrar so we make good use of this library. Here are some of the ways this library can be used:-