-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 886 Bytes
/
Cargo.toml
File metadata and controls
47 lines (42 loc) · 886 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
39
40
41
42
43
44
45
46
47
[package]
name = "music-chore"
version = "0.4.8"
edition = "2024"
[[bin]]
name = "musicctl"
path = "src/bin/musicctl.rs"
[[bin]]
name = "musicctl-mcp"
path = "src/bin/musicctl-mcp.rs"
[dependencies]
atty = "0.2"
walkdir = "2"
serde_json = "1"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
lofty = "0.23.1"
tokio = { version = "1", features = ["full"] }
rmcp = { version = "0.16.0", features = [
"server",
"macros",
"client",
"transport-io",
"transport-child-process",
# "transport-streamable-http-server",
"schemars",
] }
#
env_logger = "0.11"
log = "0.4"
schemars = "1.2.1"
sha2 = "0.10"
glob = "0.3"
dsf="0.2.2"
id3 = "1.16.4"
rayon = "1.11.0"
[lints.rust]
unused_imports = "allow"
[dev-dependencies]
tempfile = "3"
anyhow = "1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }