Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
[package]
name = "ipinfo"
description = "ipinfo: A Rust library for IPInfo"
version = "3.0.1"
version = "3.1.0"
authors = [
"Amr Ali <amralicc@gmail.com>",
"Uman Shahzad <uman@mslm.io>",
"Umar Farooq <mail.umar.now@gmail.com>",
"Fayzan Ahmad <fayzanx@gmail.com>",
"IPinfo Releases <releases@ipinfo.io>",
]
edition = "2021"
Expand All @@ -22,16 +18,17 @@ travis-ci = { repository = "ipinfo/rust", branch = "master" }
codecov = { repository = "ipinfo/rust", branch = "master", service = "github" }

[dependencies]
reqwest = { version = "0.12", features = ["json"], default-features = false }
lru = "0.12.1"
reqwest = { version = "0.12", default-features = false, features = ["json"] }
lru = "0.12"
# per https://serde.rs/no-std.html, "a dependency on serde_json always needs Serde built with std", which is why we do not set "default-features = false" on `serde`.
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ipnetwork = "0.20.0"
tokio = { version = "1", features = ["time"] }
lazy_static = "1.4"
ipnetwork = "0.20"
tokio = { version = "1", default-features = false, features = ["time"] }
lazy_static = "1.5"

[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] }

[profile.release]
overflow-checks = true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To use IPinfo, add the following to your `Cargo.toml` file.

```toml
[dependencies]
ipinfo = "3.0.1"
ipinfo = "3.1.0"
```

## Getting Started
Expand Down
Loading