tar 0.4.46

A Rust implementation of a TAR file reader and writer. This library does not currently handle compression, but it is abstract over all I/O readers and writers. Additionally, great lengths are taken to ensure that the entire contents are never required to be entirely resident in memory all at once.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# See https://crates.io/docs/trusted-publishing
name: Publish to crates.io
on:
  push:
    tags: ['v*', '[0-9]*']  # Triggers on version tags (e.g. v0.4.46 or 0.4.46)
jobs:
  publish:
    runs-on: ubuntu-24.04
    permissions:
      id-token: write     # Required for OIDC token exchange
    steps:
    - uses: actions/checkout@v6
    - uses: rust-lang/crates-io-auth-action@v1
      id: auth
    - run: cargo publish
      env:
        CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}