2 releases
0.1.3 | Apr 4, 2020 |
---|---|
0.1.2 | Feb 14, 2020 |
#27 in #recognition
4.5MB
112K
SLoC
Bundled aubio library
This crate provides bundled aubio C library for using with aubio-rs crate in case when system-installed library is not available.
Usage
You can simply add this as dependency to your manifest:
[dependencies]
aubio-rs = "^0.1"
# Use bundled library to avoid unresolved links
aubio-lib = "^0.1"
Next you should say compiler that you want to use that crate:
// Either in traditional manner
extern crate aubio_lib;
// Or in Rust2018 manner
use aubio_lib as _;
Features
The following features can be used to customize library configuration:
- shared Force bundle shared (or dynamic) library instead of static
- with-fftw3 Enables fftw3 support
- nolink-fftw3 Disable fftw3 link
- shared-fftw3 Force shared fftw3 link