GSL 0.4.29

A rust binding for the GSL (the GNU scientific library)
docs.rs failed to build GSL-0.4.29
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: GSL-7.0.0

rust-GSL Build Status ![Gitter](https://badges.gitter.im/Join Chat.svg)

A Rust binding for the GSL library (the GNU Scientific Library).

##Installation

This binding requires the GSL library library to be installed:

# on debian based systems:
sudo apt-get install libgsl0-dev

This crate works with Cargo and is on crates.io. Just add the following to your Cargo.toml file:

[dependencies]
GSL = "0.4"

Add the following line to your source code:

extern crate rgsl;

##Building

Just run cargo build. However, if you have issues with GSL version 2.x, try building it with:

cargo build --features v2

If a project depends on this version, don't forget to add in your Cargo.toml:

[features]
v2 = ["GSL/v2"]

##Documentation

You can access the rgsl documentation locally, just build it:

> cargo doc --open

Then open this file with an internet browser: file:///{rgsl_location}/target/doc/rgsl/index.html

You can also access the latest build of the documentation via the internet here.

License

rust-GSL is a wrapper for GSL, therefore inherits the GPL license.