1[package]2name = "remowt-agent"3version = "0.1.0"4edition = "2021"56[dependencies]7anyhow = "1.0.86"8clap = { version = "4.5.13", features = ["derive"] }9pam-client = "0.5.0"10polkit-shared = { version = "0.1.0", path = "../../crates/polkit-shared" }11rand = "0.8.5"12serde = { version = "1.0.204", features = ["derive"] }13tokio = { version = "1.39.2", features = ["rt-multi-thread", "fs", "macros"] }14tracing = "0.1.40"15tracing-subscriber = "0.3.18"16ui-prompt = { version = "0.1.0", path = "../../crates/ui-prompt" }17uuid = { version = "1.10.0", features = ["v4"] }18zbus = { version = "4.4.0", features = ["tokio"] }19zbus_polkit = { version = "4.0.0", features = ["tokio"] }