├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── .watch.toml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── error.rs ├── main.rs └── watch.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/.watch.toml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/README.md -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/watch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grego/caretaker/HEAD/src/watch.rs --------------------------------------------------------------------------------