-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 731 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 731 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
[package]
name = "udon"
version = "0.0.1"
authors = ["Adam <classygopher@gmail.com>"]
edition = "2018"
description = "Audio playback library designed with game engines in mind"
repository = "https://github.com/Adamcake/Kou/"
license = "GPL-2.0-only"
keywords = ["audio", "gamedev", "playback"]
include = ["src/**/*", "Cargo.toml"]
[features]
default = []
#alsa = ["alsa_rs"]
#wasapi = []
wav = []
serde-derives = ["serde"]
[dependencies]
libsoundio-sys = { path = "./libsoundio-sys" }
serde = { version = "1.0", features = ["derive", "rc"], optional = true }
#[target.'cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "linux"))'.dependencies]
#alsa_rs = { package = "alsa", version = "0.5", optional = true }