From dbc305bbc848650bb5178fd86a889288430d300e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Degioanni?= <30992420+Moxinilian@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:30:10 +0100 Subject: [PATCH] Add .cargo to gitignore (#541) To use a specific version of MLIR, it is useful to set the corresponding environment variable in `.cargo/config.toml`. In order to use this while working in melior, I think it makes sense to gitignore the `.cargo` directory. This can be reverted if the project ever needs to set it to something specific. Co-authored-by: Yota Toyama --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index eb5a316cbd..cd8e4b1f6f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ target +.cargo