File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " json"
3
- version = " 0.11.1 "
3
+ version = " 0.11.2 "
4
4
authors = [" Maciej Hirsz <maciej.hirsz@gmail.com>" ]
5
5
description = " JSON implementation in Rust"
6
6
repository = " https://github.com/maciejhirsz/json-rust"
Original file line number Diff line number Diff line change 2
2
3
3
# json-rust
4
4
5
- ![ ] ( https://travis-ci.org/maciejhirsz/json-rust.svg )
6
- ![ ] ( https://img.shields.io/crates/v/json.svg )
7
- ![ ] ( https://img.shields.io/crates/l/json.svg )
5
+ [ ![ Travis shield ] ( https://travis-ci.org/maciejhirsz/json-rust.svg )] ( https://travis-ci.org/maciejhirsz/json-rust )
6
+ [ ![ Crates.io version shield ] ( https://img.shields.io/crates/v/json.svg )] ( https://crates.io/crates/json )
7
+ [ ![ Crates.io license shield ] ( https://img.shields.io/crates/l/json.svg )] ( https://crates.io/crates/json )
8
8
9
9
Parse and serialize [ JSON] ( http://json.org/ ) with ease.
10
10
Original file line number Diff line number Diff line change 1
1
use std:: { char, error, fmt } ;
2
2
3
- #[ derive( Debug , PartialEq ) ]
4
3
/// Error type of this crate.
5
4
///
6
5
///
7
6
/// *Note:* Since `0.9.0` using `JsonError` is deprecated. Always use
8
7
/// `json::Error` instead!
8
+ #[ derive( Debug , PartialEq , Eq ) ]
9
9
pub enum Error {
10
10
UnexpectedCharacter {
11
11
ch : char ,
You can’t perform that action at this time.
0 commit comments