-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
54 lines (49 loc) · 1.01 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
[package]
authors = ["Antoni Boucher <[email protected]>"]
categories = ["gui"]
description = "Keyboard-driven web browser"
license = "MIT"
name = "titanium"
repository = "https://github.com/antoyo/titanium"
version = "0.1.1"
[dependencies]
cairo-rs = "^0.16.0"
gdk = "^0.16.0"
gio = "^0.16.0"
glib = "^0.16.0"
gtk = "^0.16.0"
gumdrop = "0.4"
log = "0.4"
log-panics = "2"
mg = "0.16"
mg-settings = "^0.4.0"
mg-settings-macros = "^0.4.0"
number_prefix = "^0.2"
open = "^1.1"
password-store = "^0.4.0"
percent-encoding = "^1.0.0"
relm = "0.24.1"
relm-derive = "0.24"
rusqlite = "0.27"
simplelog = "0.5"
syslog = "4"
tempfile = "3"
url = "^1.2"
webkit2gtk = "^1.0.0"
xdg = "^2.0"
zip = "0.3"
# TODO: remove since https://github.com/gtk-rs/gio/issues/99 is fixed.
gio-sys = "^0.16.0"
glib-sys = "^0.16.0"
gobject-sys = "^0.16.0"
[dependencies.titanium-common]
path = "titanium-common"
version = "^0.1"
[dev-dependencies]
libxdo = "0.6"
[features]
default = [
"cairo-rs/png",
"log-panics/with-backtrace",
"webkit2gtk/v2_30",
]