-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 915 Bytes
/
Cargo.toml
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
[package]
name = "game-music-emu"
version = "0.2.0"
authors = ["Jay Pavlina <[email protected]>"]
edition = "2018"
build = "build.rs"
readme = "README.md"
license = "MIT AND LGPL-2.1-or-later"
description = "Rust bindings for Game Music Emu"
keywords = ["NSF", "game", "music", "emulation", "audio"]
categories = ["api-bindings", "multimedia::audio"]
repository = "https://github.com/JayPavlina/Game-Music-Emu-Rust"
[features]
default = ["ay", "gbs", "gym", "hes", "kss", "nsf", "nsfe", "sap", "spc", "vgm", "ym2612_emu_nuked"]
ay = []
gbs = []
gym = []
hes = []
kss = []
nsf = []
nsfe = []
sap = []
spc = []
vgm = []
# choose one ym2612_emu or none. If none chosen, Ym2612_GENS.cpp is used
ym2612_emu_nuked = []
ym2612_emu_mame = []
[dependencies]
err-derive = "0.3"
libc = "0.2"
[build-dependencies]
cc = "1.0"
[dev-dependencies]
cpal = "0.13.1"
[[example]]
name = "play_nsf"
path = "examples/play_nsf.rs"