starlane 0.3.21

Starlane -- An Orchestration and Infrastructure Framework for WebAssembly Components (https://starlane.io) This packaged manages `HyperSpace` which provides infrastructure for `Space` Apis (WebAssembly & external programs meant to provide custom behaviors in Starlane), This package references the `starlane-space` package and reuses of it to run the infrastructure and it also contains mechanisms (Drivers) for extending the Starlane Type system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

VERSION := $(shell toml get ../Cargo.toml workspace.package.version )
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)

.PHONY : clean version

clean :
	cargo clean

version:
	toml set Cargo.toml dependencies.starlane-macros.version ${VERSION} > Cargo.toml.tmp && mv Cargo.toml.tmp Cargo.toml
	toml set Cargo.toml dependencies.starlane-primitive-macros.version ${VERSION} > Cargo.toml.tmp && mv Cargo.toml.tmp Cargo.toml
	echo "starlane version set to ${VERSION}"