huiz 0.1.0

Huiz is a lightweight Rust crate featuring WHOIS client
Documentation
  • Coverage
  • 0%
    0 out of 48 items documented0 out of 8 items with examples
  • Size
  • Source code size: 24.35 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.07 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 17s Average build duration of successful builds.
  • all releases: 17s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • namecare/huiz
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • tikhop

Huiz is a lightweight Rust crate featuring WHOIS client that is inspired by rfc1036/whois and FreeBSD/whoid.

Install

# Cargo.toml
[dependencies]
huiz = "0.1.0"

Quickstart

NOTE: these examples are for the 0.1 release.

use huiz::whois;

fn main() {
    let domain = "example.com";
    let r = whois(domain).unwrap();
    println!("{:?}", r)
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any Contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.