cloudcheck 9.1.3

CloudCheck is a simple Rust tool to check whether an IP address or hostname belongs to a cloud provider.
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "cloudcheck"
version = "9.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CloudCheck is a simple Rust tool to check whether an IP address or hostname belongs to a cloud provider."
homepage = "https://github.com/blacklanternsecurity/cloudcheck"
documentation = "https://docs.rs/cloudcheck"
readme = "README.md"
license = "GPL-3.0"
repository = "https://github.com/blacklanternsecurity/cloudcheck"

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

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

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

[dependencies.axum]
version = "0.8"

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.env_logger]
version = "0.11"

[dependencies.log]
version = "0.4"

[dependencies.pyo3]
version = "0.27"
optional = true

[dependencies.pyo3-async-runtimes]
version = "0.27"
features = ["tokio-runtime"]
optional = true

[dependencies.radixtarget]
version = "4.2"

[dependencies.reqwest]
version = "0.13"
features = [
    "json",
    "native-tls",
    "http2",
]
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.utoipa]
version = "5.4"
features = [
    "axum_extras",
    "chrono",
]

[dependencies.utoipa-swagger-ui]
version = "9.0"
features = ["axum"]

[dev-dependencies]