Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Include 0.11 in the range of compatible phf versions.
  • Loading branch information
adamreichold committed Aug 7, 2022
commit 9f936c08dcd96e8c3fda914f5d3f5ec24aecd4db
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
toolchain: ${{ matrix.toolchain }}
override: true

- name: Downgrade phf to a version compatible with the MSRV
run: cargo update --package phf:0.11.0 --precise 0.10.1
if: matrix.toolchain == '1.40.0'

- name: Cargo build
run: cargo build ${{ matrix.features }}

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cssparser-macros = {path = "./macros", version = "0.6"}
dtoa-short = "0.3"
itoa = "1.0"
matches = "0.1"
phf = {version = ">=0.8,<=0.10", features = ["macros"]}
phf = {version = ">=0.8,<=0.11", features = ["macros"]}
serde = {version = "1.0", optional = true}
smallvec = "1.0"

Expand Down