diff --git a/Cargo.toml b/Cargo.toml index 051fb3d1..197e9c98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,12 +3,12 @@ name = "xsv" version = "0.13.0" #:version authors = ["Andrew Gallant "] description = "A high performance CSV command line toolkit." -documentation = "https://burntsushi.net/rustdoc/xsv/" +documentation = "https://docs.rs/xsv" homepage = "https://github.com/BurntSushi/xsv" repository = "https://github.com/BurntSushi/xsv" readme = "README.md" keywords = ["csv", "tsv", "slice", "command"] -license = "Unlicense/MIT" +license = "Unlicense OR MIT" autotests = false [[bin]] diff --git a/README.md b/README.md index dea13e62..5df4c00b 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ a quick tour of several commands. [![Linux build status](https://api.travis-ci.org/BurntSushi/xsv.svg)](https://travis-ci.org/BurntSushi/xsv) [![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/xsv?svg=true)](https://ci.appveyor.com/project/BurntSushi/xsv) -[![](https://meritbadge.herokuapp.com/xsv)](https://crates.io/crates/xsv) +[![crates.io](https://img.shields.io/crates/v/xsv.svg)](https://crates.io/crates/xsv) -Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org). +Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). ### Available commands @@ -36,9 +36,9 @@ Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org). * **join** - Inner, outer and cross joins. Uses a simple hash index to make it fast. * **partition** - Partition CSV data based on a column value. +* **reverse** - Reverse order of rows in CSV data. * **sample** - Randomly draw rows from CSV data using reservoir sampling (i.e., use memory proportional to the size of the sample). -* **reverse** - Reverse order of rows in CSV data. * **search** - Run a regex over CSV data. Applies the regex to each field individually and shows only matching rows. * **select** - Select or re-order columns from CSV data. @@ -299,7 +299,7 @@ right and full outer join support too. ### Installation -Binaries for Windows, Linux and macOS are available [from Github](https://github.com/BurntSushi/xsv/releases/latest). +Binaries for Windows, Linux and macOS are available [from GitHub](https://github.com/BurntSushi/xsv/releases/latest). If you're a **macOS Homebrew** user, then you can install xsv from homebrew-core: @@ -309,7 +309,7 @@ $ brew install xsv ``` If you're a **macOS MacPorts** user, then you can install xsv -from the [official ports](https://www.macports.org/ports.php?by=name&substr=xsv): +from the [official ports](https://ports.macports.org/port/xsv/): ``` $ sudo port install xsv @@ -322,7 +322,7 @@ $ nix-env -i xsv ``` Alternatively, you can compile from source by -[installing Cargo](https://crates.io/install) +[installing Cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html) ([Rust's](https://www.rust-lang.org/) package manager) and installing `xsv` using Cargo: