-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (59 loc) · 1.77 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "terms"
version = "0.1.0"
authors = ["Dirk Van Haerenborgh <[email protected]>"]
edition = "2021"
default-run = "terms"
[[bin]]
name = "terms"
path = "./src/main.rs"
[[bin]]
name = "terms-toolbox"
path = "./src/bin/toolbox.rs"
[lib]
name = "terms_util"
path = "src/lib/util.rs"
[profile.release]
lto = true
[dependencies]
gettext-rs = { version = "0.7", features = ["gettext-system"] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-log = "0.2.0"
serde = { version = "1.0.200", features = ["derive"] }
once_cell = "1.19.0"
async-channel = "2.2.1"
glib = { version = "^0.19.5", features = ["v2_74"] }
gio = { version = "^0.19.5" }
pango = { version = "^0.19.5" }
gdk = { package = "gdk4", version = "^0.8.2", features = ["v4_12"] }
gtk = { package = "gtk4", version = "^0.8", features = ["v4_12"] }
adw = { package = "libadwaita", version = "0.6", features = ["v1_4"] }
vte = { package = "vte4", version = "0.7.1", features = ["v0_70"]}
rsvg = { package = "librsvg", version = "2.58.0" }
ashpd = { version = "0.8.1" }
gsettings-macro = "0.2.0"
async-std = "1.12.0"
constcat = "0.5.0"
serde_with = "3.8.1"
ref_thread_local = "0.1.1"
serde_json = "1.0.116"
rand = "0.8.5"
elementtree = "1.2.3"
serde_yaml = "0.9.33"
itertools = "0.12.1"
bitflags = "2.5.0"
async-trait = "0.1.80"
clap = { version = "4.5.4", features = ["derive"] }
libc = "0.2.154"
thiserror = "1.0.59"
anyhow = "1.0.82"
zbus = "4.2.0"
num-traits = "0.2.18"
approx = "0.5.1"
nix = { version = "0.28", features = ["term", "aio", "fs", "process"] }
[build-dependencies]
glib-build-tools = "0.19.0"
git-version = "0.3.9"
[patch.crates-io]
gsettings-macro = { git = "https://github.com/vhdirk/gsettings-macro.git", branch = "multiple-schemas" }