File tree Expand file tree Collapse file tree 7 files changed +615
-602
lines changed Expand file tree Collapse file tree 7 files changed +615
-602
lines changed Original file line number Diff line number Diff line change 24
24
run : cargo clippy --all-targets --all-features -- -D clippy::all
25
25
- name : Build
26
26
run : cargo build --verbose
27
- - name : Run tests
27
+ - name : Run Tests
28
28
run : RUST_TEST_THREADS=1 cargo test --verbose
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ version = "0.8.4"
12
12
13
13
[dependencies ]
14
14
bitflags = " 1"
15
- jack-sys = {path = " ./jack-sys" , version = " 0.2.3" }
15
+ dlib = " 0.5"
16
+ jack-sys = {path = " ./jack-sys" }
16
17
lazy_static = " 1.4"
17
18
libc = " 0.2"
18
19
log = " 0.4"
Original file line number Diff line number Diff line change 1
1
[package ]
2
- name = " jack-sys"
3
- version = " 0.2.3"
4
- edition = " 2018"
5
2
authors = [" Patrick Reisert" ]
6
3
description = " Low-level binding to the JACK audio API."
7
- repository = " https://github.com/RustAudio/rust-jack/tree/main/jack-sys "
4
+ edition = " 2018 "
8
5
license = " MIT OR Apache-2.0"
9
6
links = " jack"
7
+ name = " jack-sys"
8
+ repository = " https://github.com/RustAudio/rust-jack/tree/main/jack-sys"
9
+ version = " 0.3.0"
10
10
11
11
[dependencies ]
12
- libc = " 0.2 "
13
- libloading = " 0.6 "
12
+ dlib = " 0.5 "
13
+ dlopen = { version = " 0.1 " , optional = true }
14
14
lazy_static = " 1.4"
15
+ libc = " 0.2"
16
+ libloading = " 0.7"
15
17
16
18
[build-dependencies ]
17
19
pkg-config = " 0.3"
20
+
21
+ [features ]
22
+ # If dlopen is set, then dlib must be used to call jack-sys functions. See
23
+ # https://github.com/vberger/dlib.
24
+ default = []
You can’t perform that action at this time.
0 commit comments