Skip to content

Commit

Permalink
Update to toml_edit 0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
sdroege committed Nov 7, 2023
1 parent cc100ed commit 3e70a3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all
msrv:
name: "Check MSRV: 1.66.0"
name: "Check MSRV: 1.67.0"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.66.0 # MSRV
toolchain: 1.67.0 # MSRV
- uses: Swatinem/rust-cache@v2
- name: Default features
run: cargo test --all
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ description = """
Replacement for crate (macro_rules keyword) in proc-macros
"""
readme = "./README.md"
rust-version = "1.66.0"
rust-version = "1.67.0"

[dependencies]
toml_edit = "0.20.2"
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }

[dev-dependencies]
quote = "1.0.33"
Expand Down

0 comments on commit 3e70a3f

Please sign in to comment.