Skip to content

Commit 0504526

Browse files
committed
msrv: bump to Rust 1.61
Because this is what memchr now requires because of its new aarch64 SIMD routines.
1 parent b25e5d1 commit 0504526

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
include:
2020
- build: pinned
2121
os: ubuntu-latest
22-
rust: 1.60.0
22+
rust: 1.61.0
2323
- build: stable
2424
os: ubuntu-latest
2525
rust: stable

Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ license = "Unlicense/MIT"
1212
categories = ["encoding", "parser-implementations"]
1313
exclude = ["/.github", "/ci/*", "/scripts/*"]
1414
edition = "2021"
15-
resolver = "2"
16-
rust-version = "1.60"
15+
rust-version = "1.61"
1716

1817
[workspace]
1918
members = ["csv-core", "csv-index"]

README.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,23 @@ Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org).
1313
https://docs.rs/csv
1414

1515
If you're new to Rust, the
16-
[tutorial](https://docs.rs/csv/1.0.0/csv/tutorial/index.html)
16+
[tutorial](https://docs.rs/csv/1.*/csv/tutorial/index.html)
1717
is a good place to start.
1818

1919

2020
### Usage
2121

22-
Add this to your `Cargo.toml`:
22+
To bring this crate into your repository, either add `csv` to your
23+
`Cargo.toml`, or run `cargo add csv`.
2324

24-
```toml
25-
[dependencies]
26-
csv = "1.2"
27-
```
2825

2926
### Example
3027

3128
This example shows how to read CSV data from stdin and print each record to
3229
stdout.
3330

3431
There are more examples in the
35-
[cookbook](https://docs.rs/csv/1.0.0/csv/cookbook/index.html).
32+
[cookbook](https://docs.rs/csv/1.*/csv/cookbook/index.html).
3633

3734
```rust
3835
use std::{error::Error, io, process};
@@ -103,7 +100,7 @@ fn main() {
103100

104101
The above example can be run like so:
105102

106-
```text
103+
```
107104
$ git clone git://github.com/BurntSushi/rust-csv
108105
$ cd rust-csv
109106
$ cargo run --example cookbook-read-serde < examples/data/smallpop.csv

0 commit comments

Comments
 (0)