transistor 2.1.1

Crux Datalog DB Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
crux:
	docker run -d -p 3000:3000 --name CruxDB juxt/crux-standalone:20.09-1.11.0

int:
	cargo test --test lib --no-fail-fast --features "mock"

unit:
	cargo test --locked  --no-fail-fast --lib

examples-sync:
	cargo test --examples

examples-async:
	cargo test --examples --features "async"

test: unit int examples-sync examples-async