Skip to content

Commit 707336b

Browse files
authored
Auto merge of #306 - adamreichold:increase-phf-version-range, r=emilio
Include 0.11 in the range of compatible phf versions. None
2 parents 7cb5206 + 9f936c0 commit 707336b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
toolchain: ${{ matrix.toolchain }}
3636
override: true
3737

38+
- name: Downgrade phf to a version compatible with the MSRV
39+
run: cargo update --package phf:0.11.0 --precise 0.10.1
40+
if: matrix.toolchain == '1.40.0'
41+
3842
- name: Cargo build
3943
run: cargo build ${{ matrix.features }}
4044

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cssparser-macros = {path = "./macros", version = "0.6"}
2424
dtoa-short = "0.3"
2525
itoa = "1.0"
2626
matches = "0.1"
27-
phf = {version = ">=0.8,<=0.10", features = ["macros"]}
27+
phf = {version = ">=0.8,<=0.11", features = ["macros"]}
2828
serde = {version = "1.0", optional = true}
2929
smallvec = "1.0"
3030

0 commit comments

Comments
 (0)