porthole 0.1.0

Resolves open network ports
Documentation
  • Coverage
  • 100%
    4 out of 4 items documented1 out of 4 items with examples
  • Size
  • Source code size: 4.42 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.97 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • softprops/porthole
    6 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • softprops

porthole

Build Status

A tiny rust crate for resolving the next available network port

docs

Find them here

usage

use porthole;
fn main() {
  let port = porthole::open().unwrap();
  println!("next open port {:?}", port);
}

Doug Tangren (softprops) 2015