Skip to content

Commit

Permalink
21 Fix minimal versions
Browse files Browse the repository at this point in the history
  • Loading branch information
s-arash committed Dec 16, 2023
1 parent 106c4c2 commit e47a2cc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,23 @@ jobs:
- name: Run macro tests
working-directory: ./ascent_macro
run: cargo test test

dependency-check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- run: cargo --version

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
override: true
toolchain: nightly

- uses: taiki-e/install-action@cargo-hack
- uses: taiki-e/install-action@cargo-minimal-versions

- name: cargo minimal-versions
run: cargo minimal-versions check --workspace --all-features --ignore-private -v

4 changes: 2 additions & 2 deletions ascent_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
syn = { version = "1.0", features = ["derive", "full", "extra-traits", "visit-mut"] }
syn = { version = "1.0.109", features = ["derive", "full", "extra-traits", "visit-mut"] }
quote = "1.0"
ascent_base = { version = "=0.5.0", path = "../ascent_base" }
proc-macro2 = "1.0"
itertools = "0.10"
itertools = "0.12.0"
petgraph = "0.6.0"
derive-syn-parse = "0.1.5"
lazy_static = "1.4.0"
Expand Down

0 comments on commit e47a2cc

Please sign in to comment.