8 releases (3 stable)

1.0.2 Sep 27, 2022
1.0.1 Mar 7, 2021
0.0.5 Mar 7, 2021
0.0.4 Oct 1, 2016
0.0.2 Sep 30, 2016

#1871 in Network programming

Download history 54/week @ 2023-11-20 62/week @ 2023-11-27 31/week @ 2023-12-04 54/week @ 2023-12-11 36/week @ 2023-12-18 26/week @ 2024-01-01 102/week @ 2024-01-08 43/week @ 2024-01-15 9/week @ 2024-01-29 7/week @ 2024-02-05 10/week @ 2024-02-12 31/week @ 2024-02-19 43/week @ 2024-02-26 54/week @ 2024-03-04

139 downloads per month
Used in 2 crates

MIT/Apache

11KB
144 lines

Rust IPGen Library

Official implementation of the IPGen Spec in Rust

Build Status Latest Version Docs

IPGen is a library for generating unique and reproducible IP addresses in Rust. The IP addresses generated by this library are highly unique (depending on your subnet prefix), yet if you pass it the same input it will produce the same IP address. You can also generate the IP addresses using our command line tool.

Getting Started

Add ipgen as a dependency in your Cargo.toml file.

[dependencies]
ipgen = "1"

Use it in your program as follows:-

fn main() -> ipgen::Result<()> {
  // Compute subnet ID
  let subnet = ipgen::subnet("App 1")?; 
  assert_eq!(subnet, "ba3d");
  
  // Or compute an IPv6 address
  // Note you can also pass in an IPv4 network to generate an IPv4
  let network = "fd52:f6b0:3162::/48".parse()?;
  let ip = ipgen::ip("App 1", network)?;
  assert_eq!(ip.to_string(), "fd52:f6b0:3162:46a1:2a4f:89e8:8aed:1327");

  Ok(())
}

Dependencies

~470KB
~11K SLoC