csscolorparser 0.8.0

CSS color parser library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 fmt --all -- --check

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