├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .project ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── appveyor.yml ├── example └── list.dart ├── lib ├── pub_cache.dart └── src │ └── impl.dart ├── pubspec.yaml ├── test └── pub_cache_test.dart └── tool └── setup.sh /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/.project -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/appveyor.yml -------------------------------------------------------------------------------- /example/list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/example/list.dart -------------------------------------------------------------------------------- /lib/pub_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/lib/pub_cache.dart -------------------------------------------------------------------------------- /lib/src/impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/lib/src/impl.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/pub_cache_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/test/pub_cache_test.dart -------------------------------------------------------------------------------- /tool/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/pub_cache/HEAD/tool/setup.sh --------------------------------------------------------------------------------