-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) · 873 Bytes
/
Cargo.toml
File metadata and controls
37 lines (35 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "rhiza"
version = "0.1.5"
edition = "2021"
authors = ["Meron Bossin"]
description = "A windows shortcut creator / app launcher"
license = "MIT"
readme = "README.md"
keywords = ["rhiza", "rhz", "shortcut", "shortcut-creator", "app-launcher"]
categories = ["command-line-utilities"]
repository = "https://github.com/Skardyy/Rhiza"
homepage = "https://github.com/Skardyy/Rhiza"
documentation = "https://github.com/Skardyy/Rhiza"
[dependencies]
clap = { version = "4.5.26", features = ["derive"] }
colored = "3.0.0"
inquire = "0.7.5"
lnk_parser = "0.4.1"
which = "8.0.0"
mslnk = "0.1.8"
serde = "1.0.217"
serde_derive = "1.0.217"
serde_json = "1.0.138"
shellexpand = "3.1.0"
walkdir = "2.5.0"
winapi = "0.3.9"
winreg = "0.55.0"
ignore = "0.4"
dirs = "5.0"
chrono = "0.4.39"
indicatif = "0.17.11"
num_cpus = "1.16.0"
[[bin]]
name = "rhz"
path = "src/main.rs"