3 stable releases
Uses old Rust 2015
1.1.1 | Mar 3, 2016 |
---|---|
1.1.0 | Jan 12, 2016 |
1.0.0 | Dec 3, 2015 |
#2 in #preferred
76 downloads per month
Used in 5 crates
(via cassandra)
6KB
91 lines
ip-rs
A tiny crate providing the IpAddr
enum, which can represent either an IPv4 or an IPv6 address.
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;
lib.rs
:
A crate that provides the IpAddr
type, 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.