Skip to content

Commit 3014c60

Browse files
committed
v0.1.0 — Initial release
1 parent f862c33 commit 3014c60

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip) <!-- [![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) -->
1+
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
22
[![CI Status](https://github.com/jwodder/serde-json-fmt/actions/workflows/test.yml/badge.svg)](https://github.com/jwodder/serde-json-fmt/actions/workflows/test.yml)
33
[![codecov.io](https://codecov.io/gh/jwodder/serde-json-fmt/branch/master/graph/badge.svg)](https://codecov.io/gh/jwodder/serde-json-fmt)
44
[![MIT License](https://img.shields.io/github/license/jwodder/serde-json-fmt.svg)](https://opensource.org/licenses/MIT)
55

6-
[GitHub](https://github.com/jwodder/serde-json-fmt) <!-- | [crates.io](https://crates.io/crates/serde-json-fmt) | [Documentation](https://docs.rs/serde-json-fmt) --> | [Issues](https://github.com/jwodder/serde-json-fmt/issues)
6+
[GitHub](https://github.com/jwodder/serde-json-fmt) | [crates.io](https://crates.io/crates/serde-json-fmt) | [Documentation](https://docs.rs/serde-json-fmt) | [Issues](https://github.com/jwodder/serde-json-fmt/issues)
77

88
The `serde-json-fmt` crate lets you create custom
99
[`serde_json`](https://crates.io/crates/serde_json) formatters with the
@@ -15,6 +15,18 @@ the string used for pretty indentation. `serde-json-fmt` complements
1515
`serde_json` to let you also customize the whitespace around commas & colons
1616
and whether to escape non-ASCII characters.
1717

18+
Installation
19+
============
20+
21+
`serde-json-fmt` requires version 1.60 of Rust or higher. To use the
22+
`serde-json-fmt` library in your Cargo project, add the following to your
23+
`Cargo.toml`:
24+
25+
```toml
26+
[dependencies]
27+
serde-json-fmt = "0.1.0"
28+
```
29+
1830
Examples
1931
========
2032

0 commit comments

Comments
 (0)