[package] name = "fastcgi-healthcheck" description = "Fastcgi healthcheck, power by kvarn-fastcgi-client, axum and tokio." version = "0.2.0" authors = ["Aleksandar Lazic "] readme = "README.md" homepage = "https://github.com/git001/fastcgi-healthcheck" repository = "https://github.com/git001/fastcgi-healthcheck" license = "GPL-3.0" keywords = ["healthcheck","fastcgi","fcgi","http"] categories = ["network-programming", "web-programming::http-server"] exclude = ["target/*","Dockerfile",".github/*",".gitignore"] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] axum = "0.7.5" hyper = { version = "1.2.0", features = ["server", "http1"] } tokio = { version = "1.37.0", features = ["rt", "io-util", "macros", "sync", "net", "rt-multi-thread"] } kvarn-fastcgi-client = "0.9.0" log = { version = "0.4.21", features = ["kv_std"] } env_logger = "0.11.3" chrono = "0.4.37" json_env_logger = { version = "0.1.1", features = ["iso-timestamps", "chrono"] } [[bin]] name = "fastcgi-healthcheck" path = "src/main.rs" test = true bench = true