colorgrad 0.8.0

Color scales library for data visualization, charts, games, generative art and others.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SHELL := /bin/bash

.PHONY: all check test

all: check test

check:
	cargo build --no-default-features && \
	cargo clippy --no-default-features -- -D warnings && \
	cargo build --all-features && \
	cargo clippy --all-features -- -D warnings && \
	cargo build --examples && \
	cargo fmt --all -- --check

test:
	cargo test --no-default-features && \
	cargo test --all-features