An open API service indexing awesome lists of open source software.

https://github.com/splurf/pfrs

A cross-platform solution dedicated to finding an available dynamic port.
https://github.com/splurf/pfrs

dynamic-port port rust tcp

Last synced: about 1 year ago
JSON representation

A cross-platform solution dedicated to finding an available dynamic port.

Awesome Lists containing this project

README

          

# pfrs
[![Crate](https://img.shields.io/crates/v/pfrs.svg)](https://crates.io/crates/pfrs)

A cross-platform solution dedicated to finding an available dynamic port.

## Usage
```rust
use pfrs::*;

fn main() {
let port = find_open_port().unwrap();
}
```