Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix crates.io badge, update links, and use SPDX license format #307

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name = "xsv"
version = "0.13.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
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]]
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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:

Expand Down