socket2 0.3.19

Utilities for handling networking sockets with a maximal amount of configuration possible intended.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

set -eu

declare -a targets=(
	"x86_64-apple-darwin"
	"x86_64-unknown-freebsd"
	"x86_64-unknown-linux-gnu"
	"x86_64-pc-windows-gnu"
)

for target in "${targets[@]}"; do
	cargo check --target "$target" --all-targets --examples --bins --tests --no-default-features
	cargo check --target "$target" --all-targets --examples --bins --tests --all-features
done