[package]
edition = "2021"
name = "getserviceip"
version = "0.1.2"
authors = ["sukkis <rust.stuck095@passmail.net>"]
build = false
include = [
"src/*.rs",
"tests/*.rs",
"tests/common/*.rs",
"README.md",
"Cargo.toml",
"LICENSE",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Web service to get IP addresses from devices."
readme = "README.md"
keywords = [
"IP",
"network",
"service",
]
categories = ["network-programming"]
license = "GPL-3.0"
repository = "https://github.com/sukkis/getserviceip"
[lib]
name = "getserviceip"
path = "src/lib.rs"
[[bin]]
name = "getip"
path = "src/bin.rs"
[[test]]
name = "health_check"
path = "tests/health_check.rs"
[[test]]
name = "ip"
path = "tests/ip.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "state"
path = "tests/state.rs"
[dependencies.actix-web]
version = "4"
[dependencies.log]
version = "0.4.22"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.systemd-journal-logger]
version = "2.1.1"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]
[dev-dependencies.reqwest]
version = "0.11"
features = ["json"]
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]