-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
90 lines (73 loc) · 1.8 KB
/
Cargo.toml
File metadata and controls
90 lines (73 loc) · 1.8 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "ferrous-waves"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["Brandon Williams <brandon@example.com>"]
description = "High-fidelity audio analysis bridge for development workflows"
license = "MIT OR Apache-2.0"
repository = "https://github.com/willibrandon/ferrous-waves"
keywords = ["audio", "analysis", "mcp", "fft", "visualization"]
categories = ["multimedia::audio", "science", "visualization"]
[dependencies]
# Audio processing
symphonia = { version = "0.5", features = ["all"] }
hound = "3.5"
rustfft = "6.1"
realfft = "3.3"
wide = "0.7"
num-complex = "0.4"
apodize = "1.0"
ndarray = "0.15"
# Async runtime
tokio = { version = "1.35", features = ["full"] }
async-trait = "0.1"
# MCP SDK
rmcp = { version = "0.6.4", features = ["server", "transport-io"] }
rmcp-macros = "0.6.4"
uuid = { version = "1.6", features = ["v4", "serde"] }
dashmap = "5.5"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Configuration
config = "0.14"
# CLI
clap = { version = "4.4", features = ["derive"] }
# Cache
blake3 = "1.5"
bincode = "1.3"
# File operations
glob = "0.3"
futures = "0.3"
# Visualization
plotters = { version = "0.3", default-features = false, features = ["bitmap_backend", "bitmap_encoder", "line_series"] }
image = "0.24"
base64 = "0.21"
[dev-dependencies]
criterion = "0.5"
pretty_assertions = "1.4"
tempfile = "3.8"
fastrand = "2.0"
rand = "0.8"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.bench]
inherits = "release"
[[bench]]
name = "fft_benchmark"
harness = false
[[bench]]
name = "stft_benchmark"
harness = false
[[bench]]
name = "temporal_benchmark"
harness = false