forked from pop-os/keyboard-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 1.37 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 = "system76-keyboard-configurator"
version = "1.0.0"
authors = ["Ian Douglas Scott <[email protected]>", "Jeremy Soller <[email protected]>"]
license = "GPL-3.0-or-later"
edition = "2018"
[workspace]
members = [ "tools", "ffi", "backend", "widgets" ]
[dependencies]
cascade = "1"
cairo-rs = { git = "https://github.com/pop-os/gtk-rs" }
futures = "0.3.13"
gdk = { git = "https://github.com/pop-os/gtk-rs" }
gio = { git = "https://github.com/pop-os/gtk-rs" }
glib = { git = "https://github.com/pop-os/gtk-rs" }
gtk = { git = "https://github.com/pop-os/gtk-rs", features = ["v3_22"] }
libc = "0.2"
once_cell = "1.4"
pango = { git = "https://github.com/pop-os/gtk-rs" }
pangocairo = { git = "https://github.com/pop-os/gtk-rs" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4.0"
env_logger = "0.8.3"
backend = { package = "system76-keyboard-configurator-backend", path = "backend" }
widgets = { package = "system76-keyboard-configurator-widgets", path = "widgets" }
# Translation support
i18n-embed = { version = "0.12.0", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.5.0"
rust-embed = { version = "5.9.0", features = ["debug-embed"] }
[build-dependencies]
gio = { git = "https://github.com/pop-os/gtk-rs" }
[target.'cfg(target_os = "windows")'.dependencies]
winreg = "0.8"
[features]
appimage = ["backend/appimage"]