-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (36 loc) · 1.12 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 = "arcamclient"
version = "0.0.0"
authors = ["Russel Winder <[email protected]>"]
categories = ["desktop applications"]
keywords = ["Arcam", "amplifier", "remote", "control"]
license = "GPL-3.0"
description = "arcamclient is a Rust/gtk-rs/GTK+ desktop application to control an Arcam amplifier over the Ethernet connection."
readme = "README.md"
edition = "2018"
[dependencies]
ctor = "*"
env_logger = "*"
futures = "*"
#gdk-pixbuf = "*"
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs"}
#gio = "*"
gio = {git = "https://github.com/gtk-rs/gtk-rs"}
gio-futures = {git="https://github.com/sdroege/gio-futures.git"}
##gio-futures = {git="https://github.com/russel/gio-futures.git"}
##gio-futures = {path="../../../Forks/Gio_Futures"}
#glib = {version="*", features=["v2_56"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs", features=["v2_56"]}
#gtk = {version="*", features=["v3_22"]}
gtk = {git="https://github.com/gtk-rs/gtk-rs", features=["v3_22"]}
lazy_static = "*"
log = "*"
num-traits = "*"
num-derive = "*"
rand = "*"
strum = "*"
strum_macros = "*"
[dev-dependencies]
#quickcheck = "*"
#proptest = "*"
#rstest = "*"