-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (29 loc) · 924 Bytes
/
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
[package]
name = "ipify-rs"
version = "0.6.2"
edition = "2021"
authors = ["Ollivier Robert <[email protected]>"]
keywords = ["ipify", "api", "client"]
repository = "https://github.com/keltia/ipify-rs"
license = "MIT"
readme = "README.md"
description = "Rust crate for the ipify.org API."
documentation = "https://docs.rs/ipify-rs"
categories = [ "api-bindings", "command-line-utilities" ]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = "1"
clap = { version = "4", features = ["derive", "cargo"] }
futures = "0"
log = "0.4"
reqwest = { version = "0.11", features = ["blocking"] }
stderrlog = "0.5"
tokio = { version = "1.29", features = ["full"] }
[dev-dependencies]
assert_cmd = "2.0"
httpmock = "0.6"