1
0
Fork 0

Adding upstream version 0.6.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-04 23:09:13 +02:00
parent 4de83856e9
commit 5b48f7aed6
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
21 changed files with 5187 additions and 0 deletions

25
.github/workflows/crates-io.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Crates.io
on:
release:
types: [ created ]
env:
CARGO_TERM_COLOR: always
jobs:
publish:
name: Publish to crates.io
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Publish binaries
uses: katyo/publish-crates@v1
with:
registry-token: ${{ secrets.CRATES_IO_TOKEN }}