-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
21 lines (19 loc) · 823 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "ip-api-client"
version = "0.5.1" # don't forget edit version in README.md
authors = ["Ivan <[email protected]>"]
edition = "2021"
description = "The client (based on ip-api.com api) allows you to get information about the IP address"
documentation = "https://docs.rs/ip-api-client"
readme = "README.md"
homepage = "https://github.com/Mixerou/ip-api-client-rs"
repository = "https://github.com/Mixerou/ip-api-client-rs"
license = "MIT"
keywords = ["ip", "api"]
categories = ["api-bindings"]
[dependencies]
hyper = { version = "0.14.28", features = ["client", "http1", "runtime"], default-features = false }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
[dev-dependencies]
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"], default-features = false }