-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 1.27 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
[package]
name = "bevy_midix"
version = "4.0.0-alpha.8"
authors = ["dsgallups <dsgallups@protonmail.com>"]
edition = "2024"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/dsgallups/midix"
documentation = "https://docs.rs/bevy_midix"
description = "The MIDI plugin for humans. Out-of-the-box soundfont synthesizer, commands, and input!"
keywords = ["gamedev", "bevy", "midi", "encoding", "control"]
categories = ["game-development", "game-engines", "encoding"]
exclude = ["assets/*"]
[features]
default = ["std", "synth", "assets"]
serde = ["dep:serde", "midix/serde"]
std = ["thiserror/std"]
assets = ["midix/bevy_asset"]
synth = ["midix_synth", "dep:bevy_seedling", "dep:firewheel", "assets"]
[dependencies]
midir = "0.10"
midix = { version = "4.0.0-alpha", features = ["bevy"] }
midix_synth = { version = "0.1.0-alpha", optional = true }
thiserror = {version = "2.0", default-features = false }
trotcast = "0.3.0"
serde = { version = "1.0", features = ["derive"], optional = true }
bevy_seedling = { version = "0.6.0-rc", features = [
"mp3",
], optional = true }
firewheel = { version = "0.8.0-rc", optional = true }
[dependencies.bevy]
version = "0.17"
default-features = false
features = ["bevy_log"]
[dev-dependencies]
pretty_assertions = "1.4.1"