Mercurial > tablet-emu
comparison Cargo.toml @ 14:adab13145994
Add support for remote clients.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Mon, 02 Nov 2020 00:06:09 +0100 |
parents | dd10331549c6 |
children | d103f7cca0bd |
comparison
equal
deleted
inserted
replaced
13:97e543f50f62 | 14:adab13145994 |
---|---|
6 license = "AGPL-3.0-or-later" | 6 license = "AGPL-3.0-or-later" |
7 description = "Tablet emulator, for people who don’t own one" | 7 description = "Tablet emulator, for people who don’t own one" |
8 | 8 |
9 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | 9 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
10 | 10 |
11 [features] | |
12 default = ["gui"] | |
13 | |
14 gui = ["cairo-rs", "gdk", "gio", "glib", "gtk"] | |
15 | |
11 [dependencies] | 16 [dependencies] |
12 cairo-rs = "0.9.1" | |
13 gdk = "0.13.2" | |
14 gio = "0.9.1" | |
15 glib = "0.10.2" | |
16 gtk = "0.9.2" | |
17 input-linux = "0.3.0" | 17 input-linux = "0.3.0" |
18 bitflags = "1.2.1" | |
19 cairo-rs = { version = "0.9.1", optional = true } | |
20 gdk = { version = "0.13.2", optional = true } | |
21 gio = { version = "0.9.1", optional = true } | |
22 glib = { version = "0.10.2", optional = true } | |
23 gtk = { version = "0.9.2", optional = true } | |
18 | 24 |
19 [profile.release] | 25 [profile.release] |
20 lto = true | 26 lto = true |