From 9005684c1fed0da046998bfc9d3a3c14a20a54b7 Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Sun, 21 Jun 2015 15:57:52 -0400 Subject: [PATCH] Set up Travis CI --- .travis.yml | 11 +++++++++++ Cargo.toml | 1 + README.md | 10 +++++++++- 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..486183a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: rust +sudo: required + +after_success: curl https://stainless-steel.github.io/travis/after_success.sh | bash + +env: + global: + secure: dL7zxTYHbQOHo1up+sAOTl7lVbt2PRmqZi6WIX8z3cXndZgVUGiki//haypnUKDO3CTpK4oH8JPp5i6meUSm6PEKHB/4nbWHkA+2DUXO37MR1SG5W6d+xVbujd/rwov5+LJV/FfZSOB+doA2RmG7VpwEr5lidR9uZ6J1YXE+uPiYUo0jWrUP01mDidW/Mp79K5/9wHSwanXFZVOSjNP0KRF8iF2dZP/k5FKSaFUTQVtjDlFzcru8tIayVWk8CnPZzYL1QpW61jzINb3LtjPU53uV6lmbhtdqby8am3VCj9ezBlCutWc5A8XNWsQd3mpsevMNxp5aUf/PpV0TNiqsxmHoW8u/Z0g60mGm1nIMBCJUITkyxfnXGeP3TRGg8hoWp6hSQWOIxqS0CtDfI0Z7maGbU7v3vx/4IU/YyYU4piliZNKmpZgVOc3UmZ4ETiUrLETfsPemi0YCKc9spYNfXEdPrV8xQcKCow4YifW95mdfgOSnHrpj4OFyN8e6I/r4lFlUDa8HIkWMzRIT0uxnd0fPFun+PJH51+UidQPf66hxnPSFKnJQE9AKL6/jvPNIzsjZeaHQfHaFsCeYoPj8L+4SAi3qZ7wf1rtk5WKsQYAZUNLzU5fcHwwHnHGChj9wVorqjdqHo71TvR8WKfeuUjCJKgjbbCtVVidvlAQSWMA= + +notifications: + email: false diff --git a/Cargo.toml b/Cargo.toml index 8ca4d6e..34c0120 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Ivan Ukhov "] license = "MIT" repository = "https://github.com/stainless-steel/fft" homepage = "https://github.com/stainless-steel/fft" +documentation = "https://stainless-steel.github.io/fft" description = """ The package provides an algorithm to compute the discrete Fourier transform and its inverse.""" diff --git a/README.md b/README.md index 0a901a2..ff781e5 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ -# FFT +# FFT [![Version][version-img]][version-url] [![Status][status-img]][status-url] The package provides an [algorithm][1] to compute the [discrete Fourier transform][2] and its inverse. +## [Documentation][doc] + ## Contributing 1. Fork the project. @@ -11,3 +13,9 @@ transform][2] and its inverse. [1]: https://en.wikipedia.org/wiki/Fast_Fourier_transform [2]: https://en.wikipedia.org/wiki/Discrete_Fourier_transform + +[version-img]: https://img.shields.io/crates/v/fft.svg +[version-url]: https://crates.io/crates/fft +[status-img]: https://travis-ci.org/stainless-steel/fft.svg?branch=master +[status-url]: https://travis-ci.org/stainless-steel/fft +[doc]: https://stainless-steel.github.io/complex