uxc 0.2.0

Universal X-Protocol Call - Schema-driven multi-protocol RPC execution runtime
Documentation
.PHONY: all build test clean install run

all: build

build:
	cargo build --release

test:
	cargo test

clean:
	cargo clean

install: build
	cargo install --path .

run:
	cargo run

dev:
	cargo run -- --

check:
	cargo check
	cargo clippy

fmt:
	cargo fmt

docs:
	cargo doc --open