-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 619 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 619 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
[package]
authors = ["Will S. Medrano <will.s.medrano@gmail.com>"]
description = "Real time audio and midi with JACK."
documentation = "https://docs.rs/jack"
edition = "2018"
keywords = ["jack", "realtime", "audio", "midi", "music"]
license = "MIT"
name = "jack"
readme = "README.md"
repository = "https://github.com/RustAudio/rust-jack"
version = "0.9.1"
[dependencies]
bitflags = "1"
dlib = "0.5"
jack-sys = {path = "./jack-sys", version = "0.3.3"}
lazy_static = "1.4"
libc = "0.2"
log = "0.4"
[dev-dependencies]
crossbeam-channel = "0.5"
[features]
default = ["dlopen"]
dlopen = ["jack-sys/dlopen"]
metadata = []