aubio-lib

Crates.ioaubio-lib
lib.rsaubio-lib
version0.1.3
sourcesrc
created_at2020-02-14 06:29:03.547968
updated_at2020-04-04 15:45:57.725383
descriptionBundled aubio C library.
homepage
repositoryhttps://github.com/katyo/aubio-rs
max_upload_size
id208216
size16,255
Kayo Phoenix (katyo)

documentation

README

Bundled aubio library

License: GPL-3.0 Crates.io Package Docs.rs API Docs Travis-CI Status

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
Commit count: 81

cargo fmt