-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 781 Bytes
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 = "slackfm"
version = "0.1.0"
authors = ["James Forcier <csssuf@csssuf.net>"]
[dependencies]
diesel = "~1.2"
env_logger = "0.8"
failure = "0.1"
percent-encoding = "1.0"
r2d2 = "0.8"
r2d2-diesel = "1.0"
rocket = "0.4.2"
rocket_codegen = "0.4.2"
rocket_contrib = "0.4.2"
rustfm = { git = "https://github.com/csssuf/rustfm", branch = "misc-fixes" }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
[dependencies.reqwest]
version = "0.10"
features = ["blocking"]
[dependencies.rspotify]
# version = "0.9"
git = "https://github.com/csssuf/rspotify"
branch = "v0.9-client-creds"
features = ["blocking"]
[dependencies.slack_api]
version = "0.19"
default-features = false
[features]
default = ["postgres"]
postgres = ["diesel/postgres"]
sqlite = ["diesel/sqlite"]