remove unused cargo features

This commit is contained in:
monosans
2025-11-03 16:46:18 +03:00
parent 4d7eba1f66
commit 2e98d29b4f
4 changed files with 12 additions and 8 deletions
+2 -2
View File
@@ -246,9 +246,9 @@ jobs:
env:
RUSTFLAGS: ""
- if: ${{ matrix.cross }}
run: cross +beta build --features tokio-current-thread,tui --release --target '${{ matrix.target }}' --locked
run: cross +beta build --features tui --release --target '${{ matrix.target }}' --locked
- if: ${{ !matrix.cross }}
run: cargo +beta build --features tokio-current-thread,tui --release --target '${{ matrix.target }}' --locked
run: cargo +beta build --features tui --release --target '${{ matrix.target }}' --locked
- run: mkdir dist
- run: echo -n '${{ github.sha }}' > dist/commit-sha.txt
shell: bash