-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (33 loc) · 919 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
34
35
[package]
authors = ["Cyanism <[email protected]>"]
description = "MPD listening time tracker with versatile stats"
edition = "2021"
homepage = "https://github.com/Cyanistic/mpdtrackr"
keywords = ["mpd", "tracking", "cli", "music"]
license = "GPL-3.0"
name = "mpdtrackr"
readme = "README.md"
repository = "https://github.com/Cyanistic/mpdtrackr"
version = "2.1.3"
[profile.release]
opt-level = "z"
debug = false
lto = true
codegen-units = 1
panic = "abort"
strip = true
incremental = false
[dependencies]
anyhow = "1.0"
chrono = { version = "0.4.31", features = ['serde'] }
clap = { version = "4.4.7", features = ['derive'] }
dirs = "5.0"
pretty_env_logger = "0.5"
fs2 = "0.4"
futures = "0.3"
log = "0.4.20"
mpd = "0.1"
serde = "1"
serde_json = "1"
sqlx = { version = "0.7", features = ['json', 'sqlite', 'runtime-tokio', 'chrono'] }
tokio = { version = "1.33", features = ['macros', 'time', 'rt-multi-thread'] }