Crates.io | ip |
lib.rs | ip |
version | 1.1.1 |
source | src |
created_at | 2015-12-03 21:09:50.081175 |
updated_at | 2016-03-03 20:57:48.43154 |
description | 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. |
homepage | https://github.com/dimbleby/ip-rs |
repository | https://github.com/dimbleby/ip-rs |
max_upload_size | |
id | 3565 |
size | 8,716 |
A tiny crate providing the IpAddr
enum, which can represent either an IPv4 or an IPv6 address.
As of Rust 1.7.0, the std::net::IpAddr
is stabilized - and should be preferred.
API documentation is here.
In Cargo.toml
:
[dependencies]
ip = "*"
And in your crate root:
extern crate ip;