-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 1022 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 1022 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
[package]
name = "mingshi"
version = "0.1.2"
edition = "2024"
authors = ["Servus Altissimi"]
description = "Real-time music synthesizer and composition engine with dynamic playback control, advanced audio effects, and optional GPU-accelerated synthesis via WGPU. Designed for on the fly compositing."
license = "MIT"
readme = "README.md"
repository = "https://github.com/Servus-Altissimi/MingShi"
keywords = ["audio", "music", "synthesizer", "gpu", "web"]
categories = ["multimedia::audio"]
exclude = [
"target/*",
".gitignore",
]
[features]
default = []
gpu = ["dep:wgpu", "dep:bytemuck", "dep:futures-channel"]
[dependencies]
cpal = "0.17"
fastrand = "2.3.0"
hound = "3.5.1"
wgpu = { version = "29", optional = true }
bytemuck = { version = "1", features = ["derive"], optional = true }
futures-channel = { version = "0.3", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
gloo-timers = { version = "0.4", features = ["futures"] }
[lib]
name = "mingshi"
path = "src/lib.rs"