Skip to content

Commit 466a633

Browse files
author
Alex Huszagh
committed
Updated version dependencies, and fixed a very minor integer overflow bug (when applying a unary minus to signed integers that had previously overflowed during parsing, when the value overflows to min_value exactly. Since we already return an ErrorKind::Overflow for this, this error should be should be silenced with wrapping_neg.
1 parent 21e993e commit 466a633

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
99
name = "lexical"
1010
readme = "README.md"
1111
repository = "https://github.com/Alexhuszagh/rust-lexical"
12-
version = "1.8.1"
12+
version = "1.8.2"
1313
exclude = [
1414
"data/*",
1515
"benches/*",
@@ -20,7 +20,7 @@ travis-ci = { repository = "Alexhuszagh/rust-lexical" }
2020

2121
[dependencies]
2222
cfg-if = "0.1"
23-
lexical-core = { path = "lexical-core", version = "0.1.0" }
23+
lexical-core = { path = "lexical-core", version = "0.1" }
2424
# The following are only required for comprehensive float unittests.
2525
# IE, internal testing only:
2626
rand = { version = "0.4", optional = true }

lexical-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
99
name = "lexical-core"
1010
readme = "README.md"
1111
repository = "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core"
12-
version = "0.1.2"
12+
version = "0.1.3"
1313

1414
[badges]
1515
travis-ci = { repository = "Alexhuszagh/rust-lexical" }

0 commit comments

Comments
 (0)