From 301f765aa9fdde740dc83e8f944550e856f9873b Mon Sep 17 00:00:00 2001 From: Michael Hauser-Raspe Date: Thu, 4 Dec 2025 14:29:33 +0000 Subject: [PATCH] Add required tools via mise. Obviously this doesn't require people to use mise, but this provides a simple installation for people that do, and we can hardcodet he versions of dev tools that pgdog relies on. --- CONTRIBUTING.md | 1 + mise.toml | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 mise.toml diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 118ff0f9e..3cbb39047 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,6 +4,7 @@ Contributions are welcome. If you see a bug, feel free to submit a PR with a fix ## Necessary crates - cargo install +(if you use mise, these can be installed with `mise install`) - cargo-nextest - cargo-watch diff --git a/mise.toml b/mise.toml new file mode 100644 index 000000000..0d2f0ed0b --- /dev/null +++ b/mise.toml @@ -0,0 +1,3 @@ +[tools] +"cargo:cargo-nextest" = "latest" +"cargo:cargo-watch" = "latest" \ No newline at end of file