soroban-decimal 1.1.0

A precise decimal arithmetic package for Soroban contracts
Documentation
default: all

all: lint build test

test:
	cargo test

build:
	cargo build --target wasm32-unknown-unknown --release

lint: fmt clippy

fmt:
	cargo fmt --all

clippy: build
	cargo clippy --all-targets -- -D warnings

clean:
	cargo clean