a3s-box-core 0.5.2

Core types, config, and error handling for A3S Box MicroVM runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# A3S Box Core - Justfile
# Most commands available via root: just test, just fmt, just lint

default:
    @just --list

# Run tests (this crate only)
test:
    cargo test -p a3s-box-core --lib

# Run single test
test-one TEST:
    cargo test -p a3s-box-core --lib -- {{TEST}}