Browse Source

Set up Travis CI

master
Ivan Ukhov 9 years ago
parent
commit
9005684c1f
  1. 11
      .travis.yml
  2. 1
      Cargo.toml
  3. 10
      README.md

11
.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

1
Cargo.toml

@ -5,6 +5,7 @@ authors = ["Ivan Ukhov <ivan.ukhov@gmail.com>"]
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."""

10
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
Loading…
Cancel
Save