salati 0.0.1

Rust library to compute prayer times
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
lint:
	cargo clippy

test:
	cargo test

doc:
	cargo rustdoc
	open target/doc/salati/all.html

build-web:
	wasm-pack build --target web

build-crate:
	cargo build

build: lint test build-crate build-web