-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.24 KB
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
39
[package]
name = "cloudcheck"
version = "9.3.0"
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", "native-tls", "http2"] }
openssl = { version = "0.10", features = ["vendored"] }
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"]