afs 0.1.1

The first choice of fs library, inspired by node:fs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env just --justfile

release:
    cargo build --release

lint:
    cargo fmt --all
    cargo clippy --all --fix --allow-dirty --allow-staged

test:
    cargo test