Adding socket2 library as a dependency

Run this command in a terminal, in your project's directory:

cargo add socket2

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

socket2 = "0.6.2"

The socket2 library will be automatically available globally. Read the socket2 library documentation.

Back to the crate overview.