afs 0.2.0

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

release:
    cargo build --release

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

test:
    cargo test

fmt:
    cargo fmt --all
    prettier --write ./*.md