ip 1.1.1

Provides the IpAddr enum, which can represent either an IPv4 or an IPv6 address. Do not use this crate! As of Rust 1.7.0, the `std::net::IpAddr` is stabilized - and should be preferred.
Documentation
  • Coverage
  • 100%
    7 out of 7 items documented0 out of 4 items with examples
  • Size
  • Source code size: 8.86 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.61 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • dimbleby/ip-rs
    2 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • dimbleby

ip-rs

A tiny crate providing the IpAddr enum, which can represent either an IPv4 or an IPv6 address.

Build Status Build status crates.io

Do not use this code!

As of Rust 1.7.0, the std::net::IpAddr is stabilized - and should be preferred.

Documentation

API documentation is here.

Installation

In Cargo.toml:

[dependencies]
ip = "*"

And in your crate root:

extern crate ip;