-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 1.03 KB
/
Cargo.toml
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
[package]
name = "vonal"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "vonal"
path = "src/vonal_daemon/main.rs"
[[bin]]
name = "vonalc"
path = "src/vonal_client/main.rs"
[features]
default = ["launcher_plugin", "math_plugin", "pass_plugin"]
launcher_plugin = ["freedesktop-desktop-entry", "regex"]
math_plugin = []
pass_plugin = []
[dependencies]
egui = "0.22.0"
egui_extras = { version = "0.22.0", features = ["svg"] }
poll-promise = { git = "https://github.com/EmbarkStudios/poll-promise.git" }
egui_glow = { version = "0.22.0", features = ["clipboard", "winit"] }
glutin = { version = "0.30.9", features = ["x11"] }
glutin-winit = { version = "0.3.0", features = ["x11"] }
winit = { version = "0.28.6", features = ["x11"] }
serde = "1.0.180"
bincode = "1.3.3"
# configuration
toml = "0.7.6"
inotify = "0.10.2"
# launcher_plugin
freedesktop-desktop-entry = { version = "0.5.0", optional = true }
regex = { version = "1.9.1", optional = true }
raw-window-handle = "0.5.2"
x11 = { version = "2.21.0", features = ["xlib"] }
derive_more = "0.99.17"