-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (53 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
57 lines (53 loc) · 1.54 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
[package]
name = "audio_samples_python"
version = "0.2.3"
edition = "2024"
description = "Python bindings for high-performance AudioSamples Rust ecosystem - fast, type-safe audio processing with automatic metadata coordination"
repository = "https://github.com/jmg049/audio_samples_python"
homepage = "https://github.com/jmg049/audio_samples_python"
documentation = "https://docs.rs/audio_samples_python"
authors = ["Jack Geraghty (jmg049) <jgeraghty049@gmail.com>"]
readme = "README.md"
license = "MIT"
keywords = ["audio", "python", "bindings", "signal-processing", "multimedia"]
categories = ["multimedia::audio", "api-bindings"]
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
"*.pyi",
"audio_samples/*.pyi",
"audio_samples/py.typed",
"logo.png",
]
[lib]
name = "audio_samples"
crate-type = ["cdylib"]
[dependencies]
ndarray = "0.17.1"
pyo3 = { version = "0.28", features = [
"extension-module",
"multiple-pymethods",
"experimental-inspect",
] }
audio_samples = { version = "1.0.6", features = [
"python", "full_no_plotting"
] }
audio_samples_io = { version = "0.2.0", features = ["wav", "numpy", "flac"] }
numpy = "0.28"
serde_json = "1.0.149"
spectrograms = { version = "1.4.0", features = ["python"] }
non-empty-slice = "0.5.1"
num-complex = "0.4"
[features]
default = []
audio-samples-plotting = ["audio_samples/plotting"]
simd = ["audio_samples/simd"]
flac-parallel = ["audio_samples_io/flac-parallel"]
[profile.release]
opt-level = 3
debug = false
lto = "thin"
codegen-units = 1
panic = "unwind"