Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Added Rust 1.8.0 tests and tweaked some small things
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Apr 14, 2016
1 parent c01dfbb commit eb9e36a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ environment:
MSYS_BITS: 64
- TARGET: beta-i686-pc-windows-gnu
MSYS_BITS: 32
- TARGET: 1.8.0-x86_64-pc-windows-msvc
- TARGET: 1.8.0-i686-pc-windows-msvc
- TARGET: 1.8.0-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: 1.8.0-i686-pc-windows-gnu
MSYS_BITS: 32
- TARGET: 1.7.0-x86_64-pc-windows-msvc
- TARGET: 1.7.0-i686-pc-windows-msvc
- TARGET: 1.7.0-x86_64-pc-windows-gnu
Expand Down
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: rust
dist: trusty
sudo: false
os:
- linux
Expand All @@ -16,6 +17,7 @@ rust:
- nightly
- beta
- stable
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
Expand All @@ -28,8 +30,10 @@ rust:
# load travis-cargo
before_script:
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
fi
# the main build
script:
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
[![Build Status](https://travis-ci.org/Razican/vsop87-rs.svg?branch=develop)](https://travis-ci.org/Razican/vsop87-rs)
[![Build status](https://ci.appveyor.com/api/projects/status/g028p4t0ekvcypu3?svg=true)](https://ci.appveyor.com/project/Razican/vsop87-rs)
[![Coverage Status](https://coveralls.io/repos/Razican/vsop87-rs/badge.svg?branch=develop&service=github)](https://coveralls.io/github/Razican/vsop87-rs?branch=develop)
[![Crates.io](https://meritbadge.herokuapp.com/ntrumls)](https://crates.io/crates/ntrumls)
[![Crates.io](https://meritbadge.herokuapp.com/vsop87)](https://crates.io/crates/vsop87)

This library implements the
[VSOP87](https://en.wikipedia.org/wiki/VSOP_%28planets%29) algorithm in Rust.
The use can be seen in the [documentation](http://razican.github.io/vsop87-rs).
The library is divided in one module per VSOP87 version implementation. All
versions are implemented: basic VSOP87 algorithm, VSOP87A, VSOP87B, VSOP87C,
VSOP87D and VSOP87E.
[VSOP87](https://en.wikipedia.org/wiki/VSOP_%28planets%29) algorithm in 100%
pure Rust. The use can be seen in the
[documentation](http://razican.github.io/vsop87-rs). The library is divided in
one module per VSOP87 version implementation. All versions are implemented:
basic VSOP87 algorithm, VSOP87A, VSOP87B, VSOP87C, VSOP87D and VSOP87E.
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
//! VSOP87 library
//!
//! This library implements the VSOP87 solutions to calculate the positions of the planets in the
//! solar system. To use it you must include the following in your crate:
//!
Expand Down

0 comments on commit eb9e36a

Please sign in to comment.