Skip to content

Commit c22c070

Browse files
committed
Update deps. Fix nightly compile warning.
1 parent 404a4ba commit c22c070

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "maxminddb"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
description = "Library for reading MaxMind DB format used by GeoIP2"
55
documentation = "http://oschwald.github.io/maxminddb-rust/maxminddb/struct.Reader.html"
66
readme = "README.md"
@@ -16,9 +16,9 @@ crate_type = ["lib", "dylib", "staticlib"]
1616
path = "src/maxminddb/lib.rs"
1717

1818
[dependencies]
19-
log = "0.3.4"
19+
log = "0.3.5"
2020
rustc-serialize = "0.3.16"
21-
clippy = {version = "0.0.30", optional = true}
21+
clippy = {version = "0.0.37", optional = true}
2222

2323
[features]
2424
default = []

src/maxminddb/decoder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl Decoder {
6464
}
6565
}
6666

67-
type DecodeResult<T> = Result<T, MaxMindDBError>;
67+
pub type DecodeResult<T> = Result<T, MaxMindDBError>;
6868

6969
// Much of this code was borrowed from the Rust JSON library
7070
impl rustc_serialize::Decoder for Decoder {

0 commit comments

Comments
 (0)