datum-core 0.3.0

Rust stream-processing library mirroring Akka/Pekko Streams Typed, built on Ractor actors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: docs-install docs-serve docs-build docs-preview

docs-install:
	@if [ -f docs/package-lock.json ]; then \
		npm --prefix docs ci; \
	else \
		npm --prefix docs install; \
	fi

docs-serve: docs-install
	npm --prefix docs run docs:dev

docs-build: docs-install
	npm --prefix docs run docs:build

docs-preview:
	npm --prefix docs run docs:preview