-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathCargo.toml
38 lines (32 loc) · 1.03 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
[package]
name = "system76-keyboard-configurator"
version = "1.3.12"
authors = ["Ian Douglas Scott <idscott@system76.com>", "Jeremy Soller <jeremy@system76.com>"]
license = "GPL-3.0-or-later"
edition = "2021"
rust-version = "1.64"
[workspace]
members = [ "tools", "ffi", "backend", "widgets" ]
[dependencies]
cascade = "1"
futures = "0.3.13"
gtk = { version = "0.18.0" }
libc = "0.2"
once_cell = "1.4"
pangocairo = "0.18.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4.0"
env_logger = "0.10"
backend = { package = "system76-keyboard-configurator-backend", path = "backend" }
widgets = { package = "system76-keyboard-configurator-widgets", path = "widgets" }
# Translation support
i18n-embed = { version = "0.13.0", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.0"
rust-embed = { version = "6.2.0", features = ["debug-embed"] }
[build-dependencies]
glib-build-tools = "0.18.0"
[target.'cfg(target_os = "windows")'.dependencies]
winreg = "0.8"
[features]
appimage = ["backend/appimage"]