[package]
edition = "2024"
rust-version = "1.94"
name = "cargowatch-detector"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Best-effort detection of active Rust toolchain processes for CargoWatch."
homepage = "https://github.com/dunamismax/cargowatch"
documentation = "https://docs.rs/cargowatch-detector"
readme = "README.md"
keywords = [
"cargo",
"rust",
"process",
"detection",
"monitoring",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/dunamismax/cargowatch"
[lib]
name = "cargowatch_detector"
path = "src/lib.rs"
[dependencies.cargowatch-core]
version = "0.1.0"
[dependencies.sysinfo]
version = "0.37.2"
[dependencies.time]
version = "0.3.44"
features = [
"formatting",
"local-offset",
"macros",
"parsing",
"serde",
]
[dependencies.tokio]
version = "1.48.0"
features = ["full"]
[dependencies.tokio-util]
version = "0.7.16"
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies.tempfile]
version = "3.23.0"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"