Simple command to check if you are within ISS visibility range

project update and semver for some reason

Changed files
+5 -5
+1 -1
Cargo.lock
···
[[package]]
name = "iss_locator"
-
version = "0.1.0"
+
version = "0.1.1"
dependencies = [
"reqwest",
"serde_json",
+4 -4
README.md
···
Your location is recieved from IP, ISS location from an API, plagiarized Haversine formula to check the distance between.
## TODO's
-
- [ ] Make calls async (dont judge it was easier like this)
-
- [ ] Add interractive mode
-
- [ ] terminal drawn world map ( with ![plotters-rs](https://github.com/plotters-rs/plotters)? )
-
- [ ] selecting your location on the map
+
- [x] Make calls async (dont judge it was easier like this) (see below)
+
- [x] Add interractive mode. - DONE see [satellite_observe.rs](https://tangled.sh/@technoduck.me/sattelite_observe.rs)
+
- [x] terminal drawn world map ( with [plotters-rs](https://github.com/plotters-rs/plotters)? )
+
- [x] selecting your location on the map (see above)
- [ ] display location of the ISS relative to you when in range
- [x] Create compile actions on tag pushes