forked from mrmekon/connectr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (57 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
68 lines (57 loc) · 1.51 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "connectr"
version = "0.0.3"
authors = [ "Trevor Bentley <trevor@trevorbentley.com>" ]
description = "Spotify Connect library and systray/menubar application for controlling Spotify devices."
keywords = ["spotify", "connect", "webapi", "systray", "menubar"]
categories = ["api-bindings"]
homepage = "https://github.com/mrmekon/connectr"
repository = "https://github.com/mrmekon/connectr"
license = "Apache-2.0"
build = "build.rs"
[lib]
name = "connectr"
crate-type = ["rlib", "dylib"]
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'unwind'
[features]
verbose_http = []
[dependencies]
curl = "0.4.6"
open = "1.2.0"
regex = "0.2"
serde = "1.0.5"
serde_json = "1.0.2"
serde_derive = "1.0.5"
url = "1.4.0"
rust-ini = "0.9"
time = "0.1"
timer = "0.1.6"
chrono = "0.3.0"
libc = "0.2"
log = "0.3.7"
log4rs = "0.6.3"
ctrlc = "3.0.1"
[target."cfg(windows)".dependencies]
#systray = "0.1.1"
#systray = {git = "https://github.com/mrmekon/systray-rs.git"}
systray = {path = "deps/systray-rs", version="0.1.1-connectr"}
[target."cfg(all(unix, not(target_os = \"macos\")))".dependencies]
[target."cfg(target_os = \"macos\")".dependencies]
cocoa = "0.8.1"
objc-foundation = "0.1.1"
objc_id = "0.1"
[target."cfg(target_os = \"macos\")".dependencies.objc]
version = "0.2.2"
features = ["exception"]
[dev-dependencies]
#hyper = {git = "https://github.com/hyperium/hyper"}
hyper = {path = "deps/hyper", version="0.11.0-a.0"}
futures = "0.1.11"
lazy_static = "0.2"