vialabs-stellar-common 0.1.10

Common interfaces, types, and utilities for Stellar contracts in the VIA cross-chain messaging system
Documentation
default: build

all: test

test: build
	cargo test

build:
	cargo build

fmt:
	cargo fmt --all

lint:
	cargo clippy --all-targets --all-features -- -D warnings -A clippy::too-many-arguments -A clippy::type-complexity

clean:
	cargo clean

docs:
	cargo doc --no-deps --open

publish:
	cargo publish