-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
33 lines (30 loc) · 856 Bytes
/
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
[package]
name = "ronor"
version = "0.1.0"
authors = ["Mario Lang <mlang@blind.guru>"]
edition = "2021"
license = "MIT"
description = "Sonos smart speaker controller"
repository = "https://github.com/mlang/ronor"
readme = "README.md"
keywords = ["sonos", "smart speaker", "api", "cli", "tts"]
categories = ["API bindings", "Command line utilities"]
[dependencies]
clap = { version = "4", features = ["cargo", "wrap_help"] }
error-chain = "0.12"
humantime = "2"
oauth2 = { version = "4" }
reqwest = { version = "0.11", features = ["blocking", "json"] }
rustyline = "10"
scraper = { version = "0.13", default-features = false, features = [] }
serde = "1.0"
serde_json = "1.0"
serde_path_to_error = "0"
toml = "0.5"
url = "2.3"
xdg = "2.4"
[profile.release]
opt-level = 'z'
lto = true
[badges]
travis-ci = { repository = "mlang/ronor", branch = "master" }