Skip to content

Commit

Permalink
docs: Fill some more out
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Aug 11, 2021
1 parent 047559e commit fd3e02f
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ members = [
name = "toml-test"
version = "0.1.0"
description = "Verify Rust TOML parsers"
repository = "https://github.com/epage/toml-test-rs"
readme = "README.md"
categories = ["testing", "development-tools", "text-processing", "encoding"]
keywords = ["development", "toml"]
license = "MIT OR Apache-2.0"
edition = "2018"

[package.metadata.release]
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Dual-licensed under [MIT](LICENSE-MIT) or [Apache 2.0](LICENSE-APACHE)

## About

[toml-test](https://github.com/BurntSushi/toml-test) is a language-agnostic toml parser spec verification. This crate aims to streamline using `toml-tests` on Rust crates.
[toml-test](https://github.com/BurntSushi/toml-test) is a language-agnostic
toml parser spec verification. This crate aims to streamline using
`toml-tests` on Rust crates.

[Documentation]: https://docs.rs/toml-test
6 changes: 6 additions & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[package]
name = "toml-test-cli"
version = "0.1.0"
description = "Verify Rust TOML parsers"
repository = "https://github.com/epage/toml-test-rs"
readme = "README.md"
categories = ["testing", "development-tools", "text-processing", "encoding"]
keywords = ["development", "toml"]
license = "MIT OR Apache-2.0"
edition = "2018"

[[bin]]
Expand Down
16 changes: 16 additions & 0 deletions crates/cli/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# toml-test-cli

> **Verify Rust TOML parsers**
[![Documentation](https://img.shields.io/badge/docs-master-blue.svg)][Documentation]
![License](https://img.shields.io/crates/l/toml-test.svg)
[![Crates Status](https://img.shields.io/crates/v/toml-test.svg)](https://crates.io/crates/toml-test)

Dual-licensed under [MIT](LICENSE-MIT) or [Apache 2.0](LICENSE-APACHE)

## About

[toml-test](https://github.com/BurntSushi/toml-test) is a language-agnostic
toml parser spec verification. This is a re-implementation of the runner, in Rust.

[Documentation]: https://docs.rs/toml-test
6 changes: 6 additions & 0 deletions crates/data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[package]
name = "toml-test-data"
version = "1.0.0"
repository = "https://github.com/epage/toml-test-rs"
description = "TOML test cases"
readme = "README.md"
categories = ["testing", "development-tools", "text-processing", "encoding"]
keywords = ["development", "toml"]
license = "MIT OR Apache-2.0"
edition = "2018"

[dependencies]
Expand Down
16 changes: 16 additions & 0 deletions crates/data/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# toml-test-data

> **TOML test cases**
[![Documentation](https://img.shields.io/badge/docs-master-blue.svg)][Documentation]
![License](https://img.shields.io/crates/l/toml-test.svg)
[![Crates Status](https://img.shields.io/crates/v/toml-test.svg)](https://crates.io/crates/toml-test)

Dual-licensed under [MIT](LICENSE-MIT) or [Apache 2.0](LICENSE-APACHE)

## About

[toml-test](https://github.com/BurntSushi/toml-test) is a language-agnostic
toml parser spec verification. This crate distributes all of the test cases.

[Documentation]: https://docs.rs/toml-test

0 comments on commit fd3e02f

Please sign in to comment.