Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 745 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 745 Bytes

fann-sys-rs

Build Status Crates.io

Low-level Rust bindings to the Fast Artificial Neural Networks library. The wrapper fann-rs provides a safe interface on top of these.

Documentation

Usage

Add fann-sys and libc to the list of dependencies in your Cargo.toml:

[dependencies]
fann-sys = "*"
libc = "*"

and this to your crate root:

extern crate fann;
extern crate libc;