-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (34 loc) · 1.02 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
41
42
[package]
name = "zoha"
version = "0.6.0"
edition = "2021"
authors = ["Koosha Hosseiny <[email protected]>"]
description = "A drop down terminal inspired by Tilda"
homepage = "https://zoha.rs"
license = "GPL-3.0"
readme = "README.md"
rust-version = "1.60.0"
repository = "https://github.com/hkoosha/zoha"
[features]
default = ["hack"]
"hack" = ["dep:device_query"]
[dependencies]
log = "0.4"
pretty_env_logger = { version = "0.5" }
eyre = "0.6"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
dirs = "5.0"
clap = { version = "4.5", features = ["derive"] }
gtk = "0.18.1"
gdk = "0.18.0"
glib = "0.18.5"
pango = { version = "0.18.3", features = ["v1_50"] }
#zoha-vte = { path = "../zoha-vte-rs/zoha-vte", features = ["v0_70"] }
#zoha-vte-sys = { path = "../zoha-vte-rs/zoha-vte-sys", features = ["v0_70"] }
zoha-vte = { version = "0.6.0", features = ["v0_50"] }
zoha-vte-sys = { version = "0.6.0", features = ["v0_50"] }
dbus = "0.9"
dbus-crossroads = "0.5"
device_query = { version = "2.0", optional = true }