зеркало из
https://github.com/glebtv/tui-textarea.git
synced 2026-08-28 11:36:17 +03:00
chore(deps): harden dependency updates (#28)
Этот коммит содержится в:
25
.github/dependabot.yml
поставляемый
25
.github/dependabot.yml
поставляемый
@@ -3,23 +3,44 @@ updates:
|
|||||||
- package-ecosystem: cargo
|
- package-ecosystem: cargo
|
||||||
directories:
|
directories:
|
||||||
- "/"
|
- "/"
|
||||||
- "/bench"
|
|
||||||
- "/fuzz"
|
- "/fuzz"
|
||||||
schedule:
|
schedule:
|
||||||
interval: weekly
|
interval: weekly
|
||||||
|
day: monday
|
||||||
|
time: "06:00"
|
||||||
|
timezone: Europe/Berlin
|
||||||
labels:
|
labels:
|
||||||
- dependencies
|
- dependencies
|
||||||
- cargo
|
- cargo
|
||||||
open-pull-requests-limit: 10
|
open-pull-requests-limit: 10
|
||||||
groups:
|
groups:
|
||||||
patch-and-minor:
|
cargo-non-major:
|
||||||
|
applies-to: version-updates
|
||||||
|
patterns:
|
||||||
|
- "*"
|
||||||
update-types:
|
update-types:
|
||||||
- patch
|
- patch
|
||||||
- minor
|
- minor
|
||||||
|
|
||||||
- package-ecosystem: github-actions
|
- package-ecosystem: github-actions
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: weekly
|
interval: weekly
|
||||||
|
day: monday
|
||||||
|
time: "06:30"
|
||||||
|
timezone: Europe/Berlin
|
||||||
labels:
|
labels:
|
||||||
- dependencies
|
- dependencies
|
||||||
- github-actions
|
- github-actions
|
||||||
|
open-pull-requests-limit: 10
|
||||||
|
groups:
|
||||||
|
github-actions-non-major:
|
||||||
|
applies-to: version-updates
|
||||||
|
patterns:
|
||||||
|
- "*"
|
||||||
|
update-types:
|
||||||
|
- patch
|
||||||
|
- minor
|
||||||
|
ignore:
|
||||||
|
# These refs select the Rust/MSRV version rather than an action release.
|
||||||
|
- dependency-name: dtolnay/rust-toolchain
|
||||||
|
|||||||
2
.github/workflows/check.yml
поставляемый
2
.github/workflows/check.yml
поставляемый
@@ -17,4 +17,4 @@ jobs:
|
|||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v7
|
||||||
- uses: dtolnay/rust-toolchain@1.88.0
|
- uses: dtolnay/rust-toolchain@1.88.0
|
||||||
- uses: Swatinem/rust-cache@v2.9.1
|
- uses: Swatinem/rust-cache@v2.9.1
|
||||||
- run: cargo check
|
- run: cargo check --locked
|
||||||
|
|||||||
2
.github/workflows/clippy.yml
поставляемый
2
.github/workflows/clippy.yml
поставляемый
@@ -19,4 +19,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
components: clippy
|
components: clippy
|
||||||
- uses: Swatinem/rust-cache@v2.9.1
|
- uses: Swatinem/rust-cache@v2.9.1
|
||||||
- run: cargo clippy --all-targets -- -D warnings
|
- run: cargo clippy --locked --all-targets -- -D warnings
|
||||||
|
|||||||
2
.github/workflows/coverage.yml
поставляемый
2
.github/workflows/coverage.yml
поставляемый
@@ -20,7 +20,7 @@ jobs:
|
|||||||
components: llvm-tools-preview
|
components: llvm-tools-preview
|
||||||
- uses: Swatinem/rust-cache@v2.9.1
|
- uses: Swatinem/rust-cache@v2.9.1
|
||||||
- uses: taiki-e/install-action@cargo-llvm-cov
|
- uses: taiki-e/install-action@cargo-llvm-cov
|
||||||
- run: cargo llvm-cov --workspace --all-targets --lcov --output-path lcov.info
|
- run: cargo llvm-cov --locked --workspace --all-targets --lcov --output-path lcov.info
|
||||||
- name: Upload coverage reports to Codecov
|
- name: Upload coverage reports to Codecov
|
||||||
uses: codecov/codecov-action@v7
|
uses: codecov/codecov-action@v7
|
||||||
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
||||||
|
|||||||
4
.github/workflows/cross-platform.yml
поставляемый
4
.github/workflows/cross-platform.yml
поставляемый
@@ -23,5 +23,5 @@ jobs:
|
|||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v7
|
||||||
- uses: dtolnay/rust-toolchain@1.88.0
|
- uses: dtolnay/rust-toolchain@1.88.0
|
||||||
- uses: Swatinem/rust-cache@v2.9.1
|
- uses: Swatinem/rust-cache@v2.9.1
|
||||||
- run: cargo check
|
- run: cargo check --locked
|
||||||
- run: cargo test
|
- run: cargo test --locked
|
||||||
|
|||||||
4
.github/workflows/release.yml
поставляемый
4
.github/workflows/release.yml
поставляемый
@@ -63,8 +63,8 @@ jobs:
|
|||||||
- name: Verify package
|
- name: Verify package
|
||||||
if: steps.tag.outputs.exists == 'false'
|
if: steps.tag.outputs.exists == 'false'
|
||||||
run: |
|
run: |
|
||||||
cargo package
|
cargo package --locked
|
||||||
cargo test
|
cargo test --locked
|
||||||
|
|
||||||
- name: Authenticate with crates.io
|
- name: Authenticate with crates.io
|
||||||
if: steps.tag.outputs.exists == 'false'
|
if: steps.tag.outputs.exists == 'false'
|
||||||
|
|||||||
2
.github/workflows/test.yml
поставляемый
2
.github/workflows/test.yml
поставляемый
@@ -17,4 +17,4 @@ jobs:
|
|||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v7
|
||||||
- uses: dtolnay/rust-toolchain@1.88.0
|
- uses: dtolnay/rust-toolchain@1.88.0
|
||||||
- uses: Swatinem/rust-cache@v2.9.1
|
- uses: Swatinem/rust-cache@v2.9.1
|
||||||
- run: cargo test
|
- run: cargo test --locked
|
||||||
|
|||||||
1
.gitignore
поставляемый
1
.gitignore
поставляемый
@@ -1,2 +1 @@
|
|||||||
/target
|
/target
|
||||||
/Cargo.lock
|
|
||||||
|
|||||||
2312
Cargo.lock
сгенерированный
Обычный файл
2312
Cargo.lock
сгенерированный
Обычный файл
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
2
fuzz/Cargo.lock
сгенерированный
2
fuzz/Cargo.lock
сгенерированный
@@ -725,7 +725,7 @@ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tui-textarea-2"
|
name = "tui-textarea-2"
|
||||||
version = "0.9.1"
|
version = "0.12.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arbitrary",
|
"arbitrary",
|
||||||
"crossterm",
|
"crossterm",
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user