-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (52 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
64 lines (52 loc) · 1.07 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "opensignal"
version = "1.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-channel = "2.2.0"
gtk-blueprint = "0.2.0"
image = "0.25.6"
libc = "0.2"
phf = "0.11.3"
qrc = "0.0.5"
rand = "0.8.5"
rusqlite = { version = "0.35.0", features = ["bundled-sqlcipher"] }
serde_json = "1.0.140"
shellexpand = "3.1.1"
toml = "0.8.22"
url = "2.5.0"
which = "7.0.3"
[dependencies.soup3]
version = "0.6.0"
features = ["v3_4"]
[dependencies.webkit6]
version = "0.3.0"
features = ["v2_42"]
[dependencies.gtk]
version = "0.8.1"
package = "gtk4"
features = ["gnome_46"]
[dependencies.adw]
version = "0.6.0"
package = "libadwaita"
features = ["v1_5"]
[dependencies.ashpd]
version = "0.8.1"
features = ["gtk4"]
[dependencies.shumate]
version = "0.5.0"
package = "libshumate"
features = ["v1_2"]
[[bin]]
name = "opensignal"
path = "main.rs"
required-features = ["binary"]
[lib]
crate-type = ["cdylib"]
path = "lib.rs"
[features]
default = []
binary = []
[build-dependencies]
glib-build-tools = "0.20.0"