2023-07-18 07:49:07 +02:00
|
|
|
[package]
|
2023-07-19 00:55:08 +02:00
|
|
|
name = "rmenu"
|
2023-08-08 01:06:58 +02:00
|
|
|
version = "0.0.1"
|
2023-07-18 07:49:07 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-08-08 00:18:28 +02:00
|
|
|
bincode = "1.3.3"
|
2023-08-02 08:25:20 +02:00
|
|
|
cached = "0.44.0"
|
2023-07-18 07:49:07 +02:00
|
|
|
clap = { version = "4.3.15", features = ["derive"] }
|
2023-08-15 00:43:53 +02:00
|
|
|
dioxus = "0.4.0"
|
|
|
|
dioxus-desktop = "0.4.0"
|
2023-07-22 08:28:33 +02:00
|
|
|
env_logger = "0.10.0"
|
2023-07-21 08:52:04 +02:00
|
|
|
heck = "0.4.1"
|
2023-07-19 00:55:08 +02:00
|
|
|
keyboard-types = "0.6.2"
|
2023-08-08 00:18:28 +02:00
|
|
|
lastlog = { version = "0.2.3", features = ["libc"] }
|
2023-07-19 07:29:31 +02:00
|
|
|
log = "0.4.19"
|
2023-08-06 00:03:24 +02:00
|
|
|
once_cell = "1.18.0"
|
2023-08-02 08:25:20 +02:00
|
|
|
png = "0.17.9"
|
|
|
|
quick-xml = "0.30.0"
|
2023-07-25 08:47:04 +02:00
|
|
|
regex = { version = "1.9.1" }
|
2023-08-02 08:25:20 +02:00
|
|
|
resvg = "0.35.0"
|
2023-08-15 02:42:23 +02:00
|
|
|
rmenu-plugin = { version = "0.0.1", path = "../rmenu-plugin" }
|
2023-07-19 00:55:08 +02:00
|
|
|
serde = { version = "1.0.171", features = ["derive"] }
|
2023-07-18 07:49:07 +02:00
|
|
|
serde_json = "1.0.103"
|
2023-07-21 01:59:27 +02:00
|
|
|
serde_yaml = "0.9.24"
|
2023-07-21 08:52:04 +02:00
|
|
|
shell-words = "1.1.0"
|
|
|
|
shellexpand = "3.1.0"
|
2023-08-04 02:22:04 +02:00
|
|
|
strfmt = "0.2.4"
|
2023-07-21 01:59:27 +02:00
|
|
|
thiserror = "1.0.43"
|
2023-08-04 02:22:04 +02:00
|
|
|
which = "4.4.0"
|