We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b152e6c commit fd9cd2dCopy full SHA for fd9cd2d
.github/workflows/release.yml
@@ -7,8 +7,13 @@ on:
7
jobs:
8
publish:
9
runs-on: ubuntu-latest
10
+ environment: release
11
+ permissions:
12
+ id-token: write
13
steps:
- - uses: actions/checkout@v5
- - uses: katyo/publish-crates@v2
- with:
14
- registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
+ - uses: actions/checkout@v6
15
+ - uses: rust-lang/crates-io-auth-action@v1
16
+ id: auth
17
+ - run: cargo publish
18
+ env:
19
+ CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
Cargo.toml
@@ -2,7 +2,7 @@
2
name = "byteview"
3
description = "Thin, immutable zero-copy slice type"
4
license = "MIT OR Apache-2.0"
5
-version = "0.9.1"
+version = "0.10.0"
6
edition = "2021"
rust-version = "1.81"
readme = "README.md"
0 commit comments