Skip to content

Commit

Permalink
Update indexmap dependency used for preserve_order feature to version 2
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jun 24, 2023
1 parent 5145907 commit e09d78f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [beta, 1.56.1]
rust: [beta, 1.64.0, 1.56.1]
os: [ubuntu]
include:
- rust: stable
Expand All @@ -61,7 +61,9 @@ jobs:
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,arbitrary_precision
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,raw_value
- run: cargo check --features preserve_order
if: matrix.rust != '1.56.1'
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,preserve_order
if: matrix.rust != '1.56.1'
- name: Build without std
run: cargo check --manifest-path tests/crate/Cargo.toml --target ${{matrix.target}} --no-default-features --features alloc
if: matrix.target
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version = "1.36"

[dependencies]
serde = { version = "1.0.100", default-features = false }
indexmap = { version = "1.5.2", features = ["std"], optional = true }
indexmap = { version = "2", optional = true }
itoa = "1.0"
ryu = "1.0"

Expand Down

0 comments on commit e09d78f

Please sign in to comment.