readme: nit-picking
This commit is contained in:
parent
666af4c7fa
commit
9687ac3cc3
1 changed files with 8 additions and 9 deletions
|
@ -7,12 +7,12 @@ The missing YAML 1.2 implementation for Rust.
|
|||
[![license](https://img.shields.io/crates/l/yaml-rust.svg)](https://crates.io/crates/yaml-rust/)
|
||||
[![version](https://img.shields.io/crates/v/yaml-rust.svg)](https://crates.io/crates/yaml-rust/)
|
||||
|
||||
`yaml-rust` is a pure Rust YAML 1.2 implementation without
|
||||
any external dependencies, which enjoys the memory safety
|
||||
`yaml-rust` is a pure Rust YAML 1.2 implementation,
|
||||
which enjoys the memory safety
|
||||
property and other benefits from the Rust language.
|
||||
The parser is heavily influenced by `libyaml` and `yaml-cpp`.
|
||||
|
||||
This crate works on all Rust supported platforms and
|
||||
This crate works on all Rust-supported platforms. It also works on
|
||||
Rust 1.0.0 and nightly!
|
||||
|
||||
See [Document](http://chyh1990.github.io/yaml-rust/doc/yaml_rust/)
|
||||
|
@ -28,7 +28,7 @@ Add the following to the Cargo.toml of your project:
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
yaml-rust = "*"
|
||||
yaml-rust = "0.3"
|
||||
```
|
||||
|
||||
or
|
||||
|
@ -38,7 +38,7 @@ or
|
|||
git = "https://github.com/chyh1990/yaml-rust.git"
|
||||
```
|
||||
|
||||
and import using *extern crate*:
|
||||
and import:
|
||||
|
||||
```rust
|
||||
extern crate yaml_rust;
|
||||
|
@ -136,4 +136,3 @@ Fork & PR on Github.
|
|||
Unless you explicitly state otherwise, any contribution intentionally submitted
|
||||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
|
||||
additional terms or conditions.
|
||||
|
||||
|
|
Loading…
Reference in a new issue