7 个版本
0.3.1 | 2021年3月1日 |
---|---|
0.3.0 | 2021年2月28日 |
0.2.3 | 2021年2月27日 |
0.2.0 | 2018年7月18日 |
0.1.0 | 2018年7月9日 |
#4 在 #gtld
每月55次下载
在 psl-codegen 中使用
12KB
252 代码行
PSL 词法分析器
将公共后缀列表解析成易于消费的规则
lib.rs
:
公共后缀列表词法分析器
该库只提供获取和解析 Mozilla 公共后缀列表的方法。您可能对更高级的库,如 psl
,感兴趣。
示例
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")?;
依赖
~4–15MB
~223K SLoC