7 releases

0.3.1 Mar 1, 2021
0.3.0 Feb 28, 2021
0.2.3 Feb 27, 2021
0.2.0 Jul 18, 2018
0.1.0 Jul 9, 2018

#4 in #gtld

Download history 19/week @ 2025-03-19 11/week @ 2025-03-26 3/week @ 2025-04-02 29/week @ 2025-04-09 7/week @ 2025-04-16 13/week @ 2025-04-23 23/week @ 2025-05-07 18/week @ 2025-05-14 10/week @ 2025-05-28 6/week @ 2025-06-11 20/week @ 2025-06-18 20/week @ 2025-06-25 18/week @ 2025-07-02

64 downloads per month
Used in psl-codegen

MIT/Apache

12KB
252 lines

Public Suffix List Lexer

All this library does is provide methods for fetching and parsing Mozilla's Public Suffix List. You may be interested in higher level libraries like psl.

Examples

use psl_lexer::List;

// Fetch the list from the official URL,
let list = List::fetch()?;

// from your own URL
let list = List::from_url("https://example.com/path/to/public_suffix_list.dat")?;

// or from a local file.
let list = List::from_path("/path/to/public_suffix_list.dat")?;

PSL Lexer

Parse the Public Suffix List into easy to consume rules

Dependencies

~6–17MB
~242K SLoC