2024-06-20 20:43:16 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"sdk/rust/dim_sdk",
|
|
|
|
"dim_plugins/example_rust",
|
|
|
|
"dim_plugins/clock",
|
|
|
|
"dim_plugins/counter",
|
|
|
|
"dim_plugins/battery",
|
|
|
|
]
|
|
|
|
|
2024-06-14 15:22:20 +00:00
|
|
|
[package]
|
|
|
|
name = "dim"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-17 11:12:58 +00:00
|
|
|
anyhow = "1.0.86"
|
2024-06-14 15:22:20 +00:00
|
|
|
camino = "1.1.7"
|
2024-06-16 15:53:43 +00:00
|
|
|
chrono = "0.4.38"
|
2024-06-14 15:22:20 +00:00
|
|
|
clap = { version = "4.5.7", features = ["derive"] }
|
|
|
|
dlopen = "0.1.8"
|
|
|
|
dlopen_derive = "0.1.4"
|
2024-06-17 11:10:59 +00:00
|
|
|
env_logger = "0.11.3"
|
2024-06-14 15:22:20 +00:00
|
|
|
libc = "0.2.155"
|
2024-06-17 11:10:59 +00:00
|
|
|
log = "0.4.21"
|
|
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
|
|
toml = "0.8.14"
|
2024-06-14 15:22:20 +00:00
|
|
|
x11 = { version = "2.21.0", features = ["xlib"] }
|