File tree Expand file tree Collapse file tree 3 files changed +7
-11
lines changed
Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ license = "Unlicense/MIT"
1212categories = [" encoding" , " parser-implementations" ]
1313exclude = [" /.github" , " /ci/*" , " /scripts/*" ]
1414edition = " 2021"
15- resolver = " 2"
16- rust-version = " 1.60"
15+ rust-version = " 1.61"
1716
1817[workspace ]
1918members = [" csv-core" , " csv-index" ]
Original file line number Diff line number Diff line change @@ -13,26 +13,23 @@ Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org).
1313https://docs.rs/csv
1414
1515If 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 )
1717is 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
3128This example shows how to read CSV data from stdin and print each record to
3229stdout.
3330
3431There 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
3835use std :: {error :: Error , io, process};
@@ -103,7 +100,7 @@ fn main() {
103100
104101The 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
You can’t perform that action at this time.
0 commit comments