A native Rust library for Mozilla's Public Suffix List

Build Status Latest Version Docs

This crate will eventually supersede the publicsuffix crate.

Setting Up

Add this crate to your Cargo.toml:

toml [dependencies] psl = "0.1"

Examples

```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")?; ```

Use Cases

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:-