pathkit 0.6.0

Similar to the Path structure provided by python's pathlib, it provides various async/sync versions of file manipulation methods in addition to some of the std::Path built-in methods.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tasks.'test:coverage']
condition = { platforms = ["linux", "mac"] }
script = [
    "rm -rf ./coverage",
    "mkdir -p ./coverage",
    "cargo llvm-cov",
    "cargo llvm-cov --lcov --output-path ./coverage/lcov.info >/dev/null 2>&1",
]

[tasks.'test:coverage-win']
condition = { platforms = ["windows"] }
script = [
    "if exist ./coverage rmdir /s /q ./coverage",
    "mkdir ./coverage",
    "cargo llvm-cov",
    "cargo llvm-cov --lcov --output-path ./coverage/lcov.info >nul 2>&1",
]