From 533d37b7c95490506c374330221d098c876834df Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Tue, 10 Oct 2023 09:45:23 -0400 Subject: [PATCH] ci: bump pinned to Rust 1.65 --- .github/workflows/ci.yml | 2 +- Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9a2b03..7aed435 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: include: - build: pinned os: ubuntu-latest - rust: 1.61.0 + rust: 1.65.0 - build: stable os: ubuntu-latest rust: stable diff --git a/Cargo.toml b/Cargo.toml index c3f7482..2a04957 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ license = "Unlicense/MIT" categories = ["encoding", "parser-implementations"] exclude = ["/.github", "/ci/*", "/scripts/*"] edition = "2021" -rust-version = "1.61" +rust-version = "1.65" [workspace] members = ["csv-core", "csv-index"] @@ -27,7 +27,7 @@ ryu = "1" serde = "1.0.55" [dev-dependencies] -bstr = { version = "1.2.0", default-features = false, features = ["alloc", "serde"] } +bstr = { version = "1.7.0", default-features = false, features = ["alloc", "serde"] } serde = { version = "1.0.55", features = ["derive"] } [profile.release]