cloudcheck 9.1.2

CloudCheck is a simple Rust tool to check whether an IP address or hostname belongs to a cloud provider.
[package]
name = "cloudcheck"
version = "9.1.2"
edition = "2024"
description = "CloudCheck is a simple Rust tool to check whether an IP address or hostname belongs to a cloud provider."
license = "GPL-3.0"
repository = "https://github.com/blacklanternsecurity/cloudcheck"
homepage = "https://github.com/blacklanternsecurity/cloudcheck"
documentation = "https://docs.rs/cloudcheck"

[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
pyo3 = { version = "0.27", optional = true }
pyo3-async-runtimes = { version = "0.27", features = ["tokio-runtime"], optional = true }
radixtarget = "4.2"
log = "0.4"
env_logger = "0.11"
clap = { version = "4.5", features = ["derive"] }
axum = "0.8"
utoipa = { version = "5.4", features = ["axum_extras", "chrono"] }
utoipa-swagger-ui = { version = "9.0", features = ["axum"] }

[features]
default = []
py = ["dep:pyo3", "dep:pyo3-async-runtimes"]

[dev-dependencies]
[[bin]]
name = "cloudcheck"
path = "src/main.rs"

[lib]
name = "cloudcheck"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]