Skip to content

Commit e09d78f

Browse files
committed
Update indexmap dependency used for preserve_order feature to version 2
1 parent 5145907 commit e09d78f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
rust: [beta, 1.56.1]
40+
rust: [beta, 1.64.0, 1.56.1]
4141
os: [ubuntu]
4242
include:
4343
- rust: stable
@@ -61,7 +61,9 @@ jobs:
6161
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,arbitrary_precision
6262
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,raw_value
6363
- run: cargo check --features preserve_order
64+
if: matrix.rust != '1.56.1'
6465
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,preserve_order
66+
if: matrix.rust != '1.56.1'
6567
- name: Build without std
6668
run: cargo check --manifest-path tests/crate/Cargo.toml --target ${{matrix.target}} --no-default-features --features alloc
6769
if: matrix.target

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.36"
1313

1414
[dependencies]
1515
serde = { version = "1.0.100", default-features = false }
16-
indexmap = { version = "1.5.2", features = ["std"], optional = true }
16+
indexmap = { version = "2", optional = true }
1717
itoa = "1.0"
1818
ryu = "1.0"
1919

0 commit comments

Comments
 (0)