├── .cargo └── config.toml ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .markdownlint.json ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── pyscandir ├── .python-version ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── MANIFEST.in ├── README.md ├── benches │ └── benchmark.py ├── build_wheels.py ├── doc │ ├── benchmarks.md │ ├── count.md │ ├── images │ │ ├── linux_scandir_linux-5.9.png │ │ ├── linux_scandir_usr.png │ │ ├── linux_walk_linux-5.9.png │ │ ├── linux_walk_usr.png │ │ ├── windows_scandir_linux-5.9.png │ │ ├── windows_scandir_windows.png │ │ ├── windows_walk_linux-5.9.png │ │ └── windows_walk_windows.png │ ├── scandir.md │ └── walk.md ├── examples │ ├── benchmark.py │ ├── count.py │ ├── count_cm.py │ ├── fastproperties │ │ ├── doc │ │ │ └── Linux_workspace.jpg │ │ ├── fastproperties.gif │ │ ├── fastproperties.ico │ │ ├── fastproperties.py │ │ └── fastproperties.spec │ ├── scandir.py │ └── walk.py ├── pyproject.toml ├── run_pytest_for_all_wheels.sh ├── src │ ├── count.rs │ ├── def │ │ ├── count.rs │ │ ├── direntry.rs │ │ ├── mod.rs │ │ ├── scandir.rs │ │ ├── toc.rs │ │ └── walk.rs │ ├── lib.rs │ ├── scandir.rs │ └── walk.rs ├── tests │ ├── __init__.py │ ├── common.py │ ├── test_count.py │ ├── test_scandir.py │ └── test_walk.py └── upload.sh ├── scandir ├── Cargo.toml ├── README.md ├── benches │ ├── count.rs │ ├── scandir.rs │ └── walk.rs ├── doc │ ├── benchmarks.md │ ├── count.md │ ├── images │ │ ├── linux_scandir_linux-5.9.png │ │ ├── linux_scandir_usr.png │ │ ├── linux_walk_linux-5.9.png │ │ ├── linux_walk_usr.png │ │ ├── windows_scandir_linux-5.9.png │ │ ├── windows_scandir_windows.png │ │ ├── windows_walk_linux-5.9.png │ │ └── windows_walk_windows.png │ ├── scandir.md │ └── walk.md ├── examples │ ├── count.rs │ ├── scandir.rs │ └── walk.rs ├── src │ ├── common.rs │ ├── count.rs │ ├── def │ │ ├── count.rs │ │ ├── direntry.rs │ │ ├── mod.rs │ │ ├── options.rs │ │ ├── scandir.rs │ │ ├── toc.rs │ │ └── walk.rs │ ├── lib.rs │ ├── scandir.rs │ └── walk.rs └── tests │ ├── common.rs │ ├── count.rs │ ├── scandir.rs │ └── walk.rs └── tools ├── benchmark_results_nt_Windows_python.json ├── benchmark_results_nt_linux-5.9_python.json ├── benchmark_results_posix_linux-5.9_python.json ├── benchmark_results_posix_usr_python.json └── create_charts.py /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/README.md -------------------------------------------------------------------------------- /pyscandir/.python-version: -------------------------------------------------------------------------------- 1 | 3.13.2 2 | -------------------------------------------------------------------------------- /pyscandir/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/CHANGELOG.md -------------------------------------------------------------------------------- /pyscandir/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/Cargo.toml -------------------------------------------------------------------------------- /pyscandir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/LICENSE -------------------------------------------------------------------------------- /pyscandir/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/MANIFEST.in -------------------------------------------------------------------------------- /pyscandir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/README.md -------------------------------------------------------------------------------- /pyscandir/benches/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/benches/benchmark.py -------------------------------------------------------------------------------- /pyscandir/build_wheels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/build_wheels.py -------------------------------------------------------------------------------- /pyscandir/doc/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/benchmarks.md -------------------------------------------------------------------------------- /pyscandir/doc/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/count.md -------------------------------------------------------------------------------- /pyscandir/doc/images/linux_scandir_linux-5.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/images/linux_scandir_linux-5.9.png -------------------------------------------------------------------------------- /pyscandir/doc/images/linux_scandir_usr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/images/linux_scandir_usr.png -------------------------------------------------------------------------------- /pyscandir/doc/images/linux_walk_linux-5.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/images/linux_walk_linux-5.9.png -------------------------------------------------------------------------------- /pyscandir/doc/images/linux_walk_usr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/images/linux_walk_usr.png -------------------------------------------------------------------------------- /pyscandir/doc/images/windows_scandir_linux-5.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/images/windows_scandir_linux-5.9.png -------------------------------------------------------------------------------- /pyscandir/doc/images/windows_scandir_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/images/windows_scandir_windows.png -------------------------------------------------------------------------------- /pyscandir/doc/images/windows_walk_linux-5.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/images/windows_walk_linux-5.9.png -------------------------------------------------------------------------------- /pyscandir/doc/images/windows_walk_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/images/windows_walk_windows.png -------------------------------------------------------------------------------- /pyscandir/doc/scandir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/scandir.md -------------------------------------------------------------------------------- /pyscandir/doc/walk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/doc/walk.md -------------------------------------------------------------------------------- /pyscandir/examples/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/benchmark.py -------------------------------------------------------------------------------- /pyscandir/examples/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/count.py -------------------------------------------------------------------------------- /pyscandir/examples/count_cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/count_cm.py -------------------------------------------------------------------------------- /pyscandir/examples/fastproperties/doc/Linux_workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/fastproperties/doc/Linux_workspace.jpg -------------------------------------------------------------------------------- /pyscandir/examples/fastproperties/fastproperties.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/fastproperties/fastproperties.gif -------------------------------------------------------------------------------- /pyscandir/examples/fastproperties/fastproperties.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/fastproperties/fastproperties.ico -------------------------------------------------------------------------------- /pyscandir/examples/fastproperties/fastproperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/fastproperties/fastproperties.py -------------------------------------------------------------------------------- /pyscandir/examples/fastproperties/fastproperties.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/fastproperties/fastproperties.spec -------------------------------------------------------------------------------- /pyscandir/examples/scandir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/scandir.py -------------------------------------------------------------------------------- /pyscandir/examples/walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/examples/walk.py -------------------------------------------------------------------------------- /pyscandir/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/pyproject.toml -------------------------------------------------------------------------------- /pyscandir/run_pytest_for_all_wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/run_pytest_for_all_wheels.sh -------------------------------------------------------------------------------- /pyscandir/src/count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/src/count.rs -------------------------------------------------------------------------------- /pyscandir/src/def/count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/src/def/count.rs -------------------------------------------------------------------------------- /pyscandir/src/def/direntry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/src/def/direntry.rs -------------------------------------------------------------------------------- /pyscandir/src/def/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/src/def/mod.rs -------------------------------------------------------------------------------- /pyscandir/src/def/scandir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/src/def/scandir.rs -------------------------------------------------------------------------------- /pyscandir/src/def/toc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/src/def/toc.rs -------------------------------------------------------------------------------- /pyscandir/src/def/walk.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pyscandir/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/src/lib.rs -------------------------------------------------------------------------------- /pyscandir/src/scandir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/src/scandir.rs -------------------------------------------------------------------------------- /pyscandir/src/walk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/src/walk.rs -------------------------------------------------------------------------------- /pyscandir/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyscandir/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/tests/common.py -------------------------------------------------------------------------------- /pyscandir/tests/test_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/tests/test_count.py -------------------------------------------------------------------------------- /pyscandir/tests/test_scandir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/tests/test_scandir.py -------------------------------------------------------------------------------- /pyscandir/tests/test_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/pyscandir/tests/test_walk.py -------------------------------------------------------------------------------- /pyscandir/upload.sh: -------------------------------------------------------------------------------- 1 | twine upload ../target/wheels/* 2 | -------------------------------------------------------------------------------- /scandir/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/Cargo.toml -------------------------------------------------------------------------------- /scandir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/README.md -------------------------------------------------------------------------------- /scandir/benches/count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/benches/count.rs -------------------------------------------------------------------------------- /scandir/benches/scandir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/benches/scandir.rs -------------------------------------------------------------------------------- /scandir/benches/walk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/benches/walk.rs -------------------------------------------------------------------------------- /scandir/doc/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/benchmarks.md -------------------------------------------------------------------------------- /scandir/doc/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/count.md -------------------------------------------------------------------------------- /scandir/doc/images/linux_scandir_linux-5.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/images/linux_scandir_linux-5.9.png -------------------------------------------------------------------------------- /scandir/doc/images/linux_scandir_usr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/images/linux_scandir_usr.png -------------------------------------------------------------------------------- /scandir/doc/images/linux_walk_linux-5.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/images/linux_walk_linux-5.9.png -------------------------------------------------------------------------------- /scandir/doc/images/linux_walk_usr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/images/linux_walk_usr.png -------------------------------------------------------------------------------- /scandir/doc/images/windows_scandir_linux-5.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/images/windows_scandir_linux-5.9.png -------------------------------------------------------------------------------- /scandir/doc/images/windows_scandir_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/images/windows_scandir_windows.png -------------------------------------------------------------------------------- /scandir/doc/images/windows_walk_linux-5.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/images/windows_walk_linux-5.9.png -------------------------------------------------------------------------------- /scandir/doc/images/windows_walk_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/images/windows_walk_windows.png -------------------------------------------------------------------------------- /scandir/doc/scandir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/scandir.md -------------------------------------------------------------------------------- /scandir/doc/walk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/doc/walk.md -------------------------------------------------------------------------------- /scandir/examples/count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/examples/count.rs -------------------------------------------------------------------------------- /scandir/examples/scandir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/examples/scandir.rs -------------------------------------------------------------------------------- /scandir/examples/walk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/examples/walk.rs -------------------------------------------------------------------------------- /scandir/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/common.rs -------------------------------------------------------------------------------- /scandir/src/count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/count.rs -------------------------------------------------------------------------------- /scandir/src/def/count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/def/count.rs -------------------------------------------------------------------------------- /scandir/src/def/direntry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/def/direntry.rs -------------------------------------------------------------------------------- /scandir/src/def/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/def/mod.rs -------------------------------------------------------------------------------- /scandir/src/def/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/def/options.rs -------------------------------------------------------------------------------- /scandir/src/def/scandir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/def/scandir.rs -------------------------------------------------------------------------------- /scandir/src/def/toc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/def/toc.rs -------------------------------------------------------------------------------- /scandir/src/def/walk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/def/walk.rs -------------------------------------------------------------------------------- /scandir/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/lib.rs -------------------------------------------------------------------------------- /scandir/src/scandir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/scandir.rs -------------------------------------------------------------------------------- /scandir/src/walk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/src/walk.rs -------------------------------------------------------------------------------- /scandir/tests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/tests/common.rs -------------------------------------------------------------------------------- /scandir/tests/count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/tests/count.rs -------------------------------------------------------------------------------- /scandir/tests/scandir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/tests/scandir.rs -------------------------------------------------------------------------------- /scandir/tests/walk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/scandir/tests/walk.rs -------------------------------------------------------------------------------- /tools/benchmark_results_nt_Windows_python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/tools/benchmark_results_nt_Windows_python.json -------------------------------------------------------------------------------- /tools/benchmark_results_nt_linux-5.9_python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/tools/benchmark_results_nt_linux-5.9_python.json -------------------------------------------------------------------------------- /tools/benchmark_results_posix_linux-5.9_python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/tools/benchmark_results_posix_linux-5.9_python.json -------------------------------------------------------------------------------- /tools/benchmark_results_posix_usr_python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/tools/benchmark_results_posix_usr_python.json -------------------------------------------------------------------------------- /tools/create_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brmmm3/scandir-rs/HEAD/tools/create_charts.py --------------------------------------------------------------------------------