-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
48 lines (42 loc) · 1.19 KB
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
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "viberot"
version = "0.2.0"
edition = "2021"
authors = ["James Zheng <endernoke@gmail.com>"]
description = "Magnificent tool that autoplays brainrot while you're waiting for commands to complete"
readme = "README.md"
license = "MIT"
keywords = ["brainrot", "command-line", "doomscrolling", "terminal", "windows"]
categories = ["command-line-utilities", "development-tools", "multimedia"]
exclude = ["examples/"]
build = "build.rs"
[[bin]]
name = "viberot-service"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
globset = "0.4"
dirs = "5.0"
base64 = "0.21"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
# File watching for config reload
notify = "6.0"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
# Windows-specific dependencies for ETW
[target.'cfg(windows)'.dependencies]
ferrisetw = "1.0"
windows = { version = "0.52", features = [
"Win32_Foundation",
"Win32_System_Threading",
"Win32_System_Diagnostics_Etw",
"Win32_Security",
] }
widestring = "1.0"
tasklist = "0.3.1"