netstat2 0.11.2

Cross-platform library to retrieve network sockets information.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: release
on:
  release:
    types: [published]

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
        with:
          submodules: true

      - name: Publish to crates.io
        run: cargo publish --token "${CARGO_TOKEN}" --no-verify
        env:
          CARGO_TOKEN: ${{ secrets.CARGO_TOKEN }}