-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (59 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
68 lines (59 loc) · 1.24 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
# SPDX-FileCopyrightText: 2023 Dom Rodriguez
#
# SPDX-License-Identifier: MIT
[package]
name = "scrob"
version = "0.1.0"
authors = ["Dom Rodriguez <shymega@shymega.org.uk"]
edition = "2021"
publish = false
license = "MIT"
readme = "README.md"
repository = "https://github.com/shymega/scrob"
description = "A modular scrobbler in Rust."
categories = ["scrobbler", "modular"]
keywords = ["scrobbler", "modular"]
[[bin]]
name = "scrobctl"
test = false
bench = false
[[bin]]
name = "scrobd"
test = false
bench = false
[lib]
name = "scrob"
path = "src/lib.rs"
[dependencies]
time = "0.3.31"
dotenv = "0.15.0"
jsonrpc = "0.17.0"
jsonrpc-core = "18.0.0"
jsonrpc-tcp-server = "18.0.0"
jsonrpc-ipc-server = "18.0.0"
clap = "4.4.13"
env_logger = "0.10.1"
log = "0.4.20"
anyhow = "1.0.79"
thiserror = "1.0.56"
diesel = { version = "2.1.4", features = ["sqlite"] }
libsqlite3-sys = { version = "0.27.0", features = ["bundled"] }
tokio = { version = "1.35.1", features = ["full"] }
[profile.dev]
lto = true
opt-level = 3
codegen-units = 1
debug = true
[profile.dev.package."*"]
codegen-units = 1
opt-level = 3
debug = true
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
debug = false
[profile.release.package."*"]
codegen-units = 1
opt-level = 3
debug = false