Skip to content

Commit

Permalink
Increased indirect minimal versions, added workflow to check
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamschi committed Nov 22, 2024
1 parent ac78aa8 commit f4332f1
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 78 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,16 @@ jobs:
crate: cargo-deny
use-tool-cache: true
- name: Checked for unauthorized crate sources
run: cargo deny check sources
run: cargo deny check sources

minimal-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- run: cargo update -Z minimal-versions
- name: Checked for incompatible minimal versions
run: cargo check --features _test
138 changes: 61 additions & 77 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions isoprenoid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ features = "_doc"
# Implements `SignalsRuntimeRef` for `GlobalSignalsRuntime`.
global_signals_runtime = [
"dep:async-lock",
"dep:event-listener",
"dep:lock_api",
"dep:parking_lot",
"dep:scopeguard",
"dep:unwind_safe",
Expand All @@ -34,6 +36,8 @@ _doc = ["global_signals_runtime"] # Internal documentation feature.

[dependencies]
async-lock = { version = "3.4.0", default-features = false, optional = true, features = ["std"] }
event-listener = { version = "5.3.0", default-features = false, optional = true } # for `Link: Sync`
lock_api = { version = "0.4.12", default-features = false, optional = true } # for const `ReentrantMutex::new`
futures-lite = { version = "2.3.0", default-features = false, features = ["alloc"] }
parking_lot = { version = "0.12.2", default-features = false, optional = true }
scopeguard = { version = "1.2.0", default-features = false, optional = true }
Expand Down

0 comments on commit f4332f1

Please sign in to comment.