#whois #domain #client #ip #github #server #lookup

whois-rust

This is a WHOIS client library for Rust, inspired by https://github.com/hjr265/node-whois

30 stable releases

1.6.0 Dec 18, 2023
1.5.2 Sep 11, 2023
1.5.1 Nov 4, 2022
1.5.0 Mar 18, 2022
1.1.4 Nov 14, 2018

#1158 in Network programming

Download history 29/week @ 2023-12-22 17/week @ 2023-12-29 40/week @ 2024-01-05 39/week @ 2024-01-12 79/week @ 2024-01-19 96/week @ 2024-01-26 107/week @ 2024-02-02 236/week @ 2024-02-09 185/week @ 2024-02-16 135/week @ 2024-02-23 158/week @ 2024-03-01 188/week @ 2024-03-08 172/week @ 2024-03-15 150/week @ 2024-03-22 189/week @ 2024-03-29 87/week @ 2024-04-05

612 downloads per month
Used in 3 crates

MIT license

29KB
579 lines

WHOIS Rust

CI

This is a WHOIS client library for Rust, inspired by https://github.com/hjr265/node-whois

Usage

You can make a servers.json file or copy one from https://github.com/hjr265/node-whois

This is a simple example of servers.json.

{
    "org": "whois.pir.org",
    "": "whois.ripe.net",
    "_": {
        "ip": {
            "host": "whois.arin.net",
            "query": "n + $addr\r\n"
        }
    }
}

Then, use the from_path (or from_string if your JSON data is in-memory) associated function to create a WhoIs instance.

use whois_rust::WhoIs;

let whois = WhoIs::from_path("/path/to/servers.json").unwrap();

Use the lookup method and input a WhoIsLookupOptions instance to lookup a domain or an IP.

use whois_rust::{WhoIs, WhoIsLookupOptions};

let whois = WhoIs::from_path("/path/to/servers.json").unwrap();

let result: String = whois.lookup(WhoIsLookupOptions::from_string("magiclen.org").unwrap()).unwrap();

Asynchronous APIs

You may want to use async APIs with your async runtime. This crate supports tokio, currently.

[dependencies.whois-rust]
version = "*"
features = ["tokio"]

After enabling the async feature, the from_path_async function and the lookup_async function are available.

Testing

# git clone --recurse-submodules git://github.com/magiclen/whois-rust.git

git clone git://github.com/magiclen/whois-rust.git

cd whois-rust

git submodule init
git submodule update --recursive

cargo test

Crates.io

https://crates.io/crates/whois-rust

Documentation

https://docs.rs/whois-rust

License

MIT

Dependencies

~11–24MB
~331K SLoC