Skip to content

Commit 677a590

Browse files
committed
chore: Minor cleanup, bump version
1 parent 02f2df1 commit 677a590

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "json"
3-
version = "0.11.13"
4-
authors = ["Maciej Hirsz <maciej.[email protected]>"]
3+
version = "0.11.14"
4+
authors = ["Maciej Hirsz <hello@maciej.codes>"]
55
description = "JSON implementation in Rust"
66
repository = "https://github.com/maciejhirsz/json-rust"
77
documentation = "https://docs.rs/json/"

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
![](http://terhix.com/doc/json-rust-logo-small.png)
2-
31
# json-rust
42

53
[![Travis shield](https://travis-ci.org/maciejhirsz/json-rust.svg)](https://travis-ci.org/maciejhirsz/json-rust)

src/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ impl<'a> Parser<'a> {
631631
}
632632
}
633633

634-
Ok(unsafe { Number::from_parts_unchecked(true, num, (big_e.saturating_add(e * sign))) })
634+
Ok(unsafe { Number::from_parts_unchecked(true, num, big_e.saturating_add(e * sign)) })
635635
}
636636

637637
// Parse away!

tests/json_checker.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#[macro_use]
21
extern crate json;
32

43
mod json_checker_fail {

tests/number.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#[macro_use]
21
extern crate json;
32

43
use json::number::Number;

0 commit comments

Comments
 (0)