ara_source 0.2.0

A Source library for Ara Programming Language 🗃
Documentation
default:
  @just --list

# build the library
build:
    cargo build

# detect linting problems.
lint:
    cargo fmt --all -- --check
    cargo clippy

# fix linting problems.
fix:
    cargo fmt
    cargo clippy --fix --allow-dirty --allow-staged

test:
    cargo test --all