A rust port of the JS library suncalc.
Add the following to your Cargo.toml
Cargo.toml
[dependencies] sun = "0.1.0"
```rust extern crate sun;
pub fn main() { let pos = sun::get_pos(); println!(pos); } ```