20 lines
589 B
TOML
20 lines
589 B
TOML
[package]
|
|
name = "services"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "services"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
iced = { workspace = true }
|
|
tokio = { workspace = true, features = ["net", "io-util"] }
|
|
tracing = { workspace = true }
|
|
chrono = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
reqwest = { version = "0.13.5", features = ["json"] }
|
|
hyprland = { git = "https://github.com/hyprland-community/hyprland-rs", branch = "master", default-features = false, features = ["listener", "tokio"] }
|