Downloads tld suffixes to a file
- Rust 1.75+
You can include this in your Cargo.toml file:
[dependencies]
tld_download = "0.1.4"If you want to use it with the inbuilt public suffix db; then:
[dependencies]
tld_download = { version = "0.1.4", features = ["with-db"] }and then
use tld_download::from_db;
fn main () {
let db = from_db();
assert!(!db.is_empty());
}License: MIT