porthole
A tiny rust crate for resolving the next available network port
docs
Find them here
usage
use porthole;
Doug Tangren (softprops) 2015
A tiny rust crate for resolving the next available network port
Find them here
use porthole;
fn main() {
let port = porthole::open().unwrap();
println!("next open port {:?}", port);
}
Doug Tangren (softprops) 2015