├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── bin ├── compile └── detect └── test ├── compile_test.sh └── detect_test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | heroku-buildpack-testrunner/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoverbear/heroku-buildpack-rust/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoverbear/heroku-buildpack-rust/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoverbear/heroku-buildpack-rust/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoverbear/heroku-buildpack-rust/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoverbear/heroku-buildpack-rust/HEAD/bin/detect -------------------------------------------------------------------------------- /test/compile_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoverbear/heroku-buildpack-rust/HEAD/test/compile_test.sh -------------------------------------------------------------------------------- /test/detect_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoverbear/heroku-buildpack-rust/HEAD/test/detect_test.sh --------------------------------------------------------------------------------