[package] name = "assistant_daemon" version = "0.1.0" edition = "2021" description = "Daemon program for providing many features." license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = "0.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" axum = "0.7" tokio = { version = "1", features = ["full"] } hyper = "1.0" anyhow = "1.0" dirs = "5.0" reqwest = { version = "0.11.24", features = ["json","stream"] } tracing = { workspace = true } chrono = "0.4.24" cron = "0.12.0" notify = "6.1" assistant_common = { workspace = true } russh = "0.42.0" russh-keys = "0.42.0" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.9", features = ["winuser"] }