-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
38 lines (34 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "ipinfo"
description = "ipinfo: A Rust library for IPInfo"
version = "3.0.1"
authors = [
"Amr Ali <[email protected]>",
"Uman Shahzad <[email protected]>",
"Umar Farooq <[email protected]>",
"Fayzan Ahmad <[email protected]>",
"IPinfo Releases <[email protected]>",
]
edition = "2021"
license = "Apache-2.0"
homepage = "https://github.com/ipinfo/rust/"
readme = "README.md"
categories = ["network-programming"]
keywords = ["ip", "geolocation", "ipinfo", "ip-address"]
exclude = [".gitignore", ".travis.yml", ".cargo/config"]
[badges]
travis-ci = { repository = "ipinfo/rust", branch = "master" }
codecov = { repository = "ipinfo/rust", branch = "master", service = "github" }
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
lru = "0.12.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ipnetwork = "0.20.0"
tokio = { version = "1", features = ["time"] }
lazy_static = "1.4"
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
[profile.release]
overflow-checks = true
lto = true