Use byte_offset
and byte_offset_from
from the std library (#179)
#133
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ windows-latest, macos-latest, ubuntu-latest ] | |
runs-on: ${{matrix.platform}} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Build | |
uses: messense/maturin-action@v1 | |
with: | |
command: build | |
args: --release -o dist | |
- name: Upload wheels | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{matrix.platform}} wheels | |
path: dist |