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 11[package ]
22name = " json"
3- version = " 0.11.1 "
3+ version = " 0.11.2 "
44authors = [" Maciej Hirsz <maciej.hirsz@gmail.com>" ]
55description = " JSON implementation in Rust"
66repository = " https://github.com/maciejhirsz/json-rust"
Original file line number Diff line number Diff line change 22
33# json-rust
44
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 )
88
99Parse and serialize [ JSON] ( http://json.org/ ) with ease.
1010
Original file line number Diff line number Diff line change 11use std:: { char, error, fmt } ;
22
3- #[ derive( Debug , PartialEq ) ]
43/// Error type of this crate.
54///
65///
76/// *Note:* Since `0.9.0` using `JsonError` is deprecated. Always use
87/// `json::Error` instead!
8+ #[ derive( Debug , PartialEq , Eq ) ]
99pub enum Error {
1010 UnexpectedCharacter {
1111 ch : char ,
You can’t perform that action at this time.
0 commit comments