Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Update indexmap dependency to version 2 #377

Merged
merged 1 commit into from Jun 24, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.58.0]
rust: [nightly, beta, stable, 1.64.0]
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -9,10 +9,10 @@ edition = "2021"
keywords = ["yaml", "serde", "serialization"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/serde-yaml"
rust-version = "1.58"
rust-version = "1.64"

[dependencies]
indexmap = { version = "1.9", features = ["std"] }
indexmap = "2"
itoa = "1.0"
ryu = "1.0"
serde = "1.0.139"
Expand Down