├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── globby.nimble ├── src └── globby.nim └── tests ├── bench.nim ├── config.nims └── test.nim /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/globby/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/globby/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/globby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/globby/HEAD/README.md -------------------------------------------------------------------------------- /globby.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/globby/HEAD/globby.nimble -------------------------------------------------------------------------------- /src/globby.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/globby/HEAD/src/globby.nim -------------------------------------------------------------------------------- /tests/bench.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/globby/HEAD/tests/bench.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | --path:"../src" 2 | -------------------------------------------------------------------------------- /tests/test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/globby/HEAD/tests/test.nim --------------------------------------------------------------------------------